home *** CD-ROM | disk | FTP | other *** search
/ Languguage OS 2 / Languguage OS II Version 10-94 (Knowledge Media)(1994).ISO / gnu / gcc_260.zip / gcc_260 / calls.c < prev    next >
C/C++ Source or Header  |  1994-07-13  |  99KB  |  3,062 lines

  1. /* Convert function calls to rtl insns, for GNU C compiler.
  2.    Copyright (C) 1989, 1992, 1993, 1994 Free Software Foundation, Inc.
  3.  
  4. This file is part of GNU CC.
  5.  
  6. GNU CC is free software; you can redistribute it and/or modify
  7. it under the terms of the GNU General Public License as published by
  8. the Free Software Foundation; either version 2, or (at your option)
  9. any later version.
  10.  
  11. GNU CC is distributed in the hope that it will be useful,
  12. but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14. GNU General Public License for more details.
  15.  
  16. You should have received a copy of the GNU General Public License
  17. along with GNU CC; see the file COPYING.  If not, write to
  18. the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.  */
  19.  
  20. #include "config.h"
  21. #include "rtl.h"
  22. #include "tree.h"
  23. #include "flags.h"
  24. #include "expr.h"
  25. #ifdef __STDC__
  26. #include <stdarg.h>
  27. #else
  28. #include <varargs.h>
  29. #endif
  30. #include "insn-flags.h"
  31.  
  32. /* Decide whether a function's arguments should be processed
  33.    from first to last or from last to first.
  34.  
  35.    They should if the stack and args grow in opposite directions, but
  36.    only if we have push insns.  */
  37.  
  38. #ifdef PUSH_ROUNDING
  39.  
  40. #if defined (STACK_GROWS_DOWNWARD) != defined (ARGS_GROW_DOWNWARD)
  41. #define PUSH_ARGS_REVERSED    /* If it's last to first */
  42. #endif
  43.  
  44. #endif
  45.  
  46. /* Like STACK_BOUNDARY but in units of bytes, not bits.  */
  47. #define STACK_BYTES (STACK_BOUNDARY / BITS_PER_UNIT)
  48.  
  49. /* Data structure and subroutines used within expand_call.  */
  50.  
  51. struct arg_data
  52. {
  53.   /* Tree node for this argument.  */
  54.   tree tree_value;
  55.   /* Mode for value; TYPE_MODE unless promoted.  */
  56.   enum machine_mode mode;
  57.   /* Current RTL value for argument, or 0 if it isn't precomputed.  */
  58.   rtx value;
  59.   /* Initially-compute RTL value for argument; only for const functions.  */
  60.   rtx initial_value;
  61.   /* Register to pass this argument in, 0 if passed on stack, or an
  62.      EXPR_LIST if the arg is to be copied into multiple different
  63.      registers.  */
  64.   rtx reg;
  65.   /* If REG was promoted from the actual mode of the argument expression,
  66.      indicates whether the promotion is sign- or zero-extended.  */
  67.   int unsignedp;
  68.   /* Number of registers to use.  0 means put the whole arg in registers.
  69.      Also 0 if not passed in registers.  */
  70.   int partial;
  71.   /* Non-zero if argument must be passed on stack.
  72.      Note that some arguments may be passed on the stack
  73.      even though pass_on_stack is zero, just because FUNCTION_ARG says so.
  74.      pass_on_stack identifies arguments that *cannot* go in registers.  */
  75.   int pass_on_stack;
  76.   /* Offset of this argument from beginning of stack-args.  */
  77.   struct args_size offset;
  78.   /* Similar, but offset to the start of the stack slot.  Different from
  79.      OFFSET if this arg pads downward.  */
  80.   struct args_size slot_offset;
  81.   /* Size of this argument on the stack, rounded up for any padding it gets,
  82.      parts of the argument passed in registers do not count.
  83.      If REG_PARM_STACK_SPACE is defined, then register parms
  84.      are counted here as well.  */
  85.   struct args_size size;
  86.   /* Location on the stack at which parameter should be stored.  The store
  87.      has already been done if STACK == VALUE.  */
  88.   rtx stack;
  89.   /* Location on the stack of the start of this argument slot.  This can
  90.      differ from STACK if this arg pads downward.  This location is known
  91.      to be aligned to FUNCTION_ARG_BOUNDARY.  */
  92.   rtx stack_slot;
  93. #ifdef ACCUMULATE_OUTGOING_ARGS
  94.   /* Place that this stack area has been saved, if needed.  */
  95.   rtx save_area;
  96. #endif
  97. #ifdef STRICT_ALIGNMENT
  98.   /* If an argument's alignment does not permit direct copying into registers,
  99.      copy in smaller-sized pieces into pseudos.  These are stored in a
  100.      block pointed to by this field.  The next field says how many
  101.      word-sized pseudos we made.  */
  102.   rtx *aligned_regs;
  103.   int n_aligned_regs;
  104. #endif
  105. };
  106.  
  107. #ifdef ACCUMULATE_OUTGOING_ARGS
  108. /* A vector of one char per byte of stack space.  A byte if non-zero if
  109.    the corresponding stack location has been used.
  110.    This vector is used to prevent a function call within an argument from
  111.    clobbering any stack already set up.  */
  112. static char *stack_usage_map;
  113.  
  114. /* Size of STACK_USAGE_MAP.  */
  115. static int highest_outgoing_arg_in_use;
  116.  
  117. /* stack_arg_under_construction is nonzero when an argument may be
  118.    initialized with a constructor call (including a C function that
  119.    returns a BLKmode struct) and expand_call must take special action
  120.    to make sure the object being constructed does not overlap the
  121.    argument list for the constructor call.  */
  122. int stack_arg_under_construction;
  123. #endif
  124.  
  125. static int calls_function    PROTO((tree, int));
  126. static int calls_function_1    PROTO((tree, int));
  127. static void emit_call_1        PROTO((rtx, tree, int, int, rtx, rtx, int,
  128.                        rtx, int));
  129. static void store_one_arg    PROTO ((struct arg_data *, rtx, int, int,
  130.                     tree, int));
  131.  
  132. /* If WHICH is 1, return 1 if EXP contains a call to the built-in function
  133.    `alloca'.
  134.  
  135.    If WHICH is 0, return 1 if EXP contains a call to any function.
  136.    Actually, we only need return 1 if evaluating EXP would require pushing
  137.    arguments on the stack, but that is too difficult to compute, so we just
  138.    assume any function call might require the stack.  */
  139.  
  140. static tree calls_function_save_exprs;
  141.  
  142. static int
  143. calls_function (exp, which)
  144.      tree exp;
  145.      int which;
  146. {
  147.   int val;
  148.   calls_function_save_exprs = 0;
  149.   val = calls_function_1 (exp, which);
  150.   calls_function_save_exprs = 0;
  151.   return val;
  152. }
  153.  
  154. static int
  155. calls_function_1 (exp, which)
  156.      tree exp;
  157.      int which;
  158. {
  159.   register int i;
  160.   enum tree_code code = TREE_CODE (exp);
  161.   int type = TREE_CODE_CLASS (code);
  162.   int length = tree_code_length[(int) code];
  163.  
  164.   /* If this code is langauge-specific, we don't know what it will do.  */
  165.   if ((int) code >= NUM_TREE_CODES)
  166.     return 1;
  167.  
  168.   /* Only expressions and references can contain calls.  */
  169.   if (type != 'e' && type != '<' && type != '1' && type != '2' && type != 'r'
  170.       && type != 'b')
  171.     return 0;
  172.  
  173.   switch (code)
  174.     {
  175.     case CALL_EXPR:
  176.       if (which == 0)
  177.     return 1;
  178.       else if (TREE_CODE (TREE_OPERAND (exp, 0)) == ADDR_EXPR
  179.            && (TREE_CODE (TREE_OPERAND (TREE_OPERAND (exp, 0), 0))
  180.            == FUNCTION_DECL))
  181.     {
  182.       tree fndecl = TREE_OPERAND (TREE_OPERAND (exp, 0), 0);
  183.  
  184.       if ((DECL_BUILT_IN (fndecl)
  185.            && DECL_FUNCTION_CODE (fndecl) == BUILT_IN_ALLOCA)
  186.           || (DECL_SAVED_INSNS (fndecl)
  187.           && (FUNCTION_FLAGS (DECL_SAVED_INSNS (fndecl))
  188.               & FUNCTION_FLAGS_CALLS_ALLOCA)))
  189.         return 1;
  190.     }
  191.  
  192.       /* Third operand is RTL.  */
  193.       length = 2;
  194.       break;
  195.  
  196.     case SAVE_EXPR:
  197.       if (SAVE_EXPR_RTL (exp) != 0)
  198.     return 0;
  199.       if (value_member (exp, calls_function_save_exprs))
  200.     return 0;
  201.       calls_function_save_exprs = tree_cons (NULL_TREE, exp,
  202.                          calls_function_save_exprs);
  203.       return (TREE_OPERAND (exp, 0) != 0
  204.           && calls_function_1 (TREE_OPERAND (exp, 0), which));
  205.  
  206.     case BLOCK:
  207.       {
  208.     register tree local;
  209.  
  210.     for (local = BLOCK_VARS (exp); local; local = TREE_CHAIN (local))
  211.       if (DECL_INITIAL (local) != 0
  212.           && calls_function_1 (DECL_INITIAL (local), which))
  213.         return 1;
  214.       }
  215.       {
  216.     register tree subblock;
  217.  
  218.     for (subblock = BLOCK_SUBBLOCKS (exp);
  219.          subblock;
  220.          subblock = TREE_CHAIN (subblock))
  221.       if (calls_function_1 (subblock, which))
  222.         return 1;
  223.       }
  224.       return 0;
  225.  
  226.     case METHOD_CALL_EXPR:
  227.       length = 3;
  228.       break;
  229.  
  230.     case WITH_CLEANUP_EXPR:
  231.       length = 1;
  232.       break;
  233.  
  234.     case RTL_EXPR:
  235.       return 0;
  236.     }
  237.  
  238.   for (i = 0; i < length; i++)
  239.     if (TREE_OPERAND (exp, i) != 0
  240.     && calls_function_1 (TREE_OPERAND (exp, i), which))
  241.       return 1;
  242.  
  243.   return 0;
  244. }
  245.  
  246. /* Force FUNEXP into a form suitable for the address of a CALL,
  247.    and return that as an rtx.  Also load the static chain register
  248.    if FNDECL is a nested function.
  249.  
  250.    CALL_FUSAGE points to a variable holding the prospective
  251.    CALL_INSN_FUNCTION_USAGE information.  */
  252.  
  253. rtx
  254. prepare_call_address (funexp, fndecl, call_fusage, reg_parm_seen)
  255.      rtx funexp;
  256.      tree fndecl;
  257.      rtx *call_fusage;
  258.      int reg_parm_seen;
  259. {
  260.   rtx static_chain_value = 0;
  261.  
  262.   funexp = protect_from_queue (funexp, 0);
  263.  
  264.   if (fndecl != 0)
  265.     /* Get possible static chain value for nested function in C. */
  266.     static_chain_value = lookup_static_chain (fndecl);
  267.  
  268.   /* Make a valid memory address and copy constants thru pseudo-regs,
  269.      but not for a constant address if -fno-function-cse.  */
  270.   if (GET_CODE (funexp) != SYMBOL_REF)
  271.     funexp =
  272. #ifdef SMALL_REGISTER_CLASSES
  273.     /* If we are using registers for parameters, force the
  274.      function address into a register now.  */
  275.       reg_parm_seen ? force_not_mem (memory_address (FUNCTION_MODE, funexp))
  276.             :
  277. #endif
  278.               memory_address (FUNCTION_MODE, funexp);
  279.   else
  280.     {
  281. #ifndef NO_FUNCTION_CSE
  282.       if (optimize && ! flag_no_function_cse)
  283. #ifdef NO_RECURSIVE_FUNCTION_CSE
  284.     if (fndecl != current_function_decl)
  285. #endif
  286.       funexp = force_reg (Pmode, funexp);
  287. #endif
  288.     }
  289.  
  290.   if (static_chain_value != 0)
  291.     {
  292.       emit_move_insn (static_chain_rtx, static_chain_value);
  293.  
  294.       use_reg (call_fusage, static_chain_rtx);
  295.     }
  296.  
  297.   return funexp;
  298. }
  299.  
  300. /* Generate instructions to call function FUNEXP,
  301.    and optionally pop the results.
  302.    The CALL_INSN is the first insn generated.
  303.  
  304.    FUNTYPE is the data type of the function, or, for a library call,
  305.    the identifier for the name of the call.  This is given to the
  306.    macro RETURN_POPS_ARGS to determine whether this function pops its own args.
  307.  
  308.    STACK_SIZE is the number of bytes of arguments on the stack,
  309.    rounded up to STACK_BOUNDARY; zero if the size is variable.
  310.    This is both to put into the call insn and
  311.    to generate explicit popping code if necessary.
  312.  
  313.    STRUCT_VALUE_SIZE is the number of bytes wanted in a structure value.
  314.    It is zero if this call doesn't want a structure value.
  315.  
  316.    NEXT_ARG_REG is the rtx that results from executing
  317.      FUNCTION_ARG (args_so_far, VOIDmode, void_type_node, 1)
  318.    just after all the args have had their registers assigned.
  319.    This could be whatever you like, but normally it is the first
  320.    arg-register beyond those used for args in this call,
  321.    or 0 if all the arg-registers are used in this call.
  322.    It is passed on to `gen_call' so you can put this info in the call insn.
  323.  
  324.    VALREG is a hard register in which a value is returned,
  325.    or 0 if the call does not return a value.
  326.  
  327.    OLD_INHIBIT_DEFER_POP is the value that `inhibit_defer_pop' had before
  328.    the args to this call were processed.
  329.    We restore `inhibit_defer_pop' to that value.
  330.  
  331.    CALL_FUSAGE is either empty or an EXPR_LIST of USE expressions that
  332.    denote registers used by the called function.
  333.  
  334.    IS_CONST is true if this is a `const' call.  */
  335.  
  336. static void
  337. emit_call_1 (funexp, funtype, stack_size, struct_value_size, next_arg_reg,
  338.          valreg, old_inhibit_defer_pop, call_fusage, is_const)
  339.      rtx funexp;
  340.      tree funtype;
  341.      int stack_size;
  342.      int struct_value_size;
  343.      rtx next_arg_reg;
  344.      rtx valreg;
  345.      int old_inhibit_defer_pop;
  346.      rtx call_fusage;
  347.      int is_const;
  348. {
  349.   rtx stack_size_rtx = GEN_INT (stack_size);
  350.   rtx struct_value_size_rtx = GEN_INT (struct_value_size);
  351.   rtx call_insn;
  352.   int already_popped = 0;
  353.  
  354.   /* Ensure address is valid.  SYMBOL_REF is already valid, so no need,
  355.      and we don't want to load it into a register as an optimization,
  356.      because prepare_call_address already did it if it should be done.  */
  357.   if (GET_CODE (funexp) != SYMBOL_REF)
  358.     funexp = memory_address (FUNCTION_MODE, funexp);
  359.  
  360. #ifndef ACCUMULATE_OUTGOING_ARGS
  361. #if defined (HAVE_call_pop) && defined (HAVE_call_value_pop)
  362.   if (HAVE_call_pop && HAVE_call_value_pop
  363.       && (RETURN_POPS_ARGS (funtype, stack_size) > 0 || stack_size == 0))
  364.     {
  365.       rtx n_pop = GEN_INT (RETURN_POPS_ARGS (funtype, stack_size));
  366.       rtx pat;
  367.  
  368.       /* If this subroutine pops its own args, record that in the call insn
  369.      if possible, for the sake of frame pointer elimination.  */
  370.       if (valreg)
  371.     pat = gen_call_value_pop (valreg,
  372.                   gen_rtx (MEM, FUNCTION_MODE, funexp),
  373.                   stack_size_rtx, next_arg_reg, n_pop);
  374.       else
  375.     pat = gen_call_pop (gen_rtx (MEM, FUNCTION_MODE, funexp),
  376.                 stack_size_rtx, next_arg_reg, n_pop);
  377.  
  378.       emit_call_insn (pat);
  379.       already_popped = 1;
  380.     }
  381.   else
  382. #endif
  383. #endif
  384.  
  385. #if defined (HAVE_call) && defined (HAVE_call_value)
  386.   if (HAVE_call && HAVE_call_value)
  387.     {
  388.       if (valreg)
  389.     emit_call_insn (gen_call_value (valreg,
  390.                     gen_rtx (MEM, FUNCTION_MODE, funexp),
  391.                     stack_size_rtx, next_arg_reg,
  392.                     NULL_RTX));
  393.       else
  394.     emit_call_insn (gen_call (gen_rtx (MEM, FUNCTION_MODE, funexp),
  395.                   stack_size_rtx, next_arg_reg,
  396.                   struct_value_size_rtx));
  397.     }
  398.   else
  399. #endif
  400.     abort ();
  401.  
  402.   /* Find the CALL insn we just emitted.  */
  403.   for (call_insn = get_last_insn ();
  404.        call_insn && GET_CODE (call_insn) != CALL_INSN;
  405.        call_insn = PREV_INSN (call_insn))
  406.     ;
  407.  
  408.   if (! call_insn)
  409.     abort ();
  410.  
  411.   /* Put the register usage information on the CALL.  If there is already
  412.      some usage information, put ours at the end.  */
  413.   if (CALL_INSN_FUNCTION_USAGE (call_insn))
  414.     {
  415.       rtx link;
  416.  
  417.       for (link = CALL_INSN_FUNCTION_USAGE (call_insn); XEXP (link, 1) != 0;
  418.        link = XEXP (link, 1))
  419.     ;
  420.  
  421.       XEXP (link, 1) = call_fusage;
  422.     }
  423.   else
  424.     CALL_INSN_FUNCTION_USAGE (call_insn) = call_fusage;
  425.  
  426.   /* If this is a const call, then set the insn's unchanging bit.  */
  427.   if (is_const)
  428.     CONST_CALL_P (call_insn) = 1;
  429.  
  430.   /* Restore this now, so that we do defer pops for this call's args
  431.      if the context of the call as a whole permits.  */
  432.   inhibit_defer_pop = old_inhibit_defer_pop;
  433.  
  434. #ifndef ACCUMULATE_OUTGOING_ARGS
  435.   /* If returning from the subroutine does not automatically pop the args,
  436.      we need an instruction to pop them sooner or later.
  437.      Perhaps do it now; perhaps just record how much space to pop later.
  438.  
  439.      If returning from the subroutine does pop the args, indicate that the
  440.      stack pointer will be changed.  */
  441.  
  442.   if (stack_size != 0 && RETURN_POPS_ARGS (funtype, stack_size) > 0)
  443.     {
  444.       if (!already_popped)
  445.     CALL_INSN_FUNCTION_USAGE (call_insn) =
  446.        gen_rtx (EXPR_LIST, CLOBBER, stack_pointer_rtx,
  447.             CALL_INSN_FUNCTION_USAGE (call_insn));
  448.       stack_size -= RETURN_POPS_ARGS (funtype, stack_size);
  449.       stack_size_rtx = GEN_INT (stack_size);
  450.     }
  451.  
  452.   if (stack_size != 0)
  453.     {
  454.       if (flag_defer_pop && inhibit_defer_pop == 0 && !is_const)
  455.     pending_stack_adjust += stack_size;
  456.       else
  457.     adjust_stack (stack_size_rtx);
  458.     }
  459. #endif
  460. }
  461.  
  462. /* Generate all the code for a function call
  463.    and return an rtx for its value.
  464.    Store the value in TARGET (specified as an rtx) if convenient.
  465.    If the value is stored in TARGET then TARGET is returned.
  466.    If IGNORE is nonzero, then we ignore the value of the function call.  */
  467.  
  468. rtx
  469. expand_call (exp, target, ignore)
  470.      tree exp;
  471.      rtx target;
  472.      int ignore;
  473. {
  474.   /* List of actual parameters.  */
  475.   tree actparms = TREE_OPERAND (exp, 1);
  476.   /* RTX for the function to be called.  */
  477.   rtx funexp;
  478.   /* Tree node for the function to be called (not the address!).  */
  479.   tree funtree;
  480.   /* Data type of the function.  */
  481.   tree funtype;
  482.   /* Declaration of the function being called,
  483.      or 0 if the function is computed (not known by name).  */
  484.   tree fndecl = 0;
  485.   char *name = 0;
  486.  
  487.   /* Register in which non-BLKmode value will be returned,
  488.      or 0 if no value or if value is BLKmode.  */
  489.   rtx valreg;
  490.   /* Address where we should return a BLKmode value;
  491.      0 if value not BLKmode.  */
  492.   rtx structure_value_addr = 0;
  493.   /* Nonzero if that address is being passed by treating it as
  494.      an extra, implicit first parameter.  Otherwise,
  495.      it is passed by being copied directly into struct_value_rtx.  */
  496.   int structure_value_addr_parm = 0;
  497.   /* Size of aggregate value wanted, or zero if none wanted
  498.      or if we are using the non-reentrant PCC calling convention
  499.      or expecting the value in registers.  */
  500.   int struct_value_size = 0;
  501.   /* Nonzero if called function returns an aggregate in memory PCC style,
  502.      by returning the address of where to find it.  */
  503.   int pcc_struct_value = 0;
  504.  
  505.   /* Number of actual parameters in this call, including struct value addr.  */
  506.   int num_actuals;
  507.   /* Number of named args.  Args after this are anonymous ones
  508.      and they must all go on the stack.  */
  509.   int n_named_args;
  510.   /* Count arg position in order args appear.  */
  511.   int argpos;
  512.  
  513.   /* Vector of information about each argument.
  514.      Arguments are numbered in the order they will be pushed,
  515.      not the order they are written.  */
  516.   struct arg_data *args;
  517.  
  518.   /* Total size in bytes of all the stack-parms scanned so far.  */
  519.   struct args_size args_size;
  520.   /* Size of arguments before any adjustments (such as rounding).  */
  521.   struct args_size original_args_size;
  522.   /* Data on reg parms scanned so far.  */
  523.   CUMULATIVE_ARGS args_so_far;
  524.   /* Nonzero if a reg parm has been scanned.  */
  525.   int reg_parm_seen;
  526.   /* Nonzero if this is an indirect function call.  */
  527.   int current_call_is_indirect = 0;
  528.  
  529.   /* Nonzero if we must avoid push-insns in the args for this call. 
  530.      If stack space is allocated for register parameters, but not by the
  531.      caller, then it is preallocated in the fixed part of the stack frame.
  532.      So the entire argument block must then be preallocated (i.e., we
  533.      ignore PUSH_ROUNDING in that case).  */
  534.  
  535. #if defined(REG_PARM_STACK_SPACE) && ! defined(OUTGOING_REG_PARM_STACK_SPACE)
  536.   int must_preallocate = 1;
  537. #else
  538. #ifdef PUSH_ROUNDING
  539.   int must_preallocate = 0;
  540. #else
  541.   int must_preallocate = 1;
  542. #endif
  543. #endif
  544.  
  545.   /* Size of the stack reserved for parameter registers.  */
  546.   int reg_parm_stack_space = 0;
  547.  
  548.   /* 1 if scanning parms front to back, -1 if scanning back to front.  */
  549.   int inc;
  550.   /* Address of space preallocated for stack parms
  551.      (on machines that lack push insns), or 0 if space not preallocated.  */
  552.   rtx argblock = 0;
  553.  
  554.   /* Nonzero if it is plausible that this is a call to alloca.  */
  555.   int may_be_alloca;
  556.   /* Nonzero if this is a call to setjmp or a related function.  */
  557.   int returns_twice;
  558.   /* Nonzero if this is a call to `longjmp'.  */
  559.   int is_longjmp;
  560.   /* Nonzero if this is a call to an inline function.  */
  561.   int is_integrable = 0;
  562.   /* Nonzero if this is a call to a `const' function.
  563.      Note that only explicitly named functions are handled as `const' here.  */
  564.   int is_const = 0;
  565.   /* Nonzero if this is a call to a `volatile' function.  */
  566.   int is_volatile = 0;
  567. #if defined(ACCUMULATE_OUTGOING_ARGS) && defined(REG_PARM_STACK_SPACE)
  568.   /* Define the boundary of the register parm stack space that needs to be
  569.      save, if any.  */
  570.   int low_to_save = -1, high_to_save;
  571.   rtx save_area = 0;        /* Place that it is saved */
  572. #endif
  573.  
  574. #ifdef ACCUMULATE_OUTGOING_ARGS
  575.   int initial_highest_arg_in_use = highest_outgoing_arg_in_use;
  576.   char *initial_stack_usage_map = stack_usage_map;
  577. #endif
  578.  
  579.   rtx old_stack_level = 0;
  580.   int old_pending_adj = 0;
  581.   int old_stack_arg_under_construction;
  582.   int old_inhibit_defer_pop = inhibit_defer_pop;
  583.   tree old_cleanups = cleanups_this_call;
  584.   rtx call_fusage = 0;
  585.   register tree p;
  586.   register int i, j;
  587.  
  588.   /* See if we can find a DECL-node for the actual function.
  589.      As a result, decide whether this is a call to an integrable function.  */
  590.  
  591.   p = TREE_OPERAND (exp, 0);
  592.   if (TREE_CODE (p) == ADDR_EXPR)
  593.     {
  594.       fndecl = TREE_OPERAND (p, 0);
  595.       if (TREE_CODE (fndecl) != FUNCTION_DECL)
  596.     fndecl = 0;
  597.       else
  598.     {
  599.       if (!flag_no_inline
  600.           && fndecl != current_function_decl
  601.           && DECL_SAVED_INSNS (fndecl))
  602.         is_integrable = 1;
  603.       else if (! TREE_ADDRESSABLE (fndecl))
  604.         {
  605.           /* In case this function later becomes inlinable,
  606.          record that there was already a non-inline call to it.
  607.  
  608.          Use abstraction instead of setting TREE_ADDRESSABLE
  609.          directly.  */
  610.           if (DECL_INLINE (fndecl) && warn_inline && !flag_no_inline)
  611.         warning_with_decl (fndecl, "can't inline call to `%s'");
  612.           mark_addressable (fndecl);
  613.         }
  614.  
  615.       if (TREE_READONLY (fndecl) && ! TREE_THIS_VOLATILE (fndecl)
  616.           && TYPE_MODE (TREE_TYPE (exp)) != VOIDmode)
  617.         is_const = 1;
  618.  
  619.       if (TREE_THIS_VOLATILE (fndecl))
  620.         is_volatile = 1;
  621.     }
  622.     }
  623.  
  624.   /* If we don't have specific function to call, see if we have a 
  625.      constant or `noreturn' function from the type.  */
  626.   if (fndecl == 0)
  627.     {
  628.       is_const = TREE_READONLY (TREE_TYPE (TREE_TYPE (p)));
  629.       is_volatile = TREE_THIS_VOLATILE (TREE_TYPE (TREE_TYPE (p)));
  630.     }
  631.  
  632. #ifdef REG_PARM_STACK_SPACE
  633. #ifdef MAYBE_REG_PARM_STACK_SPACE
  634.   reg_parm_stack_space = MAYBE_REG_PARM_STACK_SPACE;
  635. #else
  636.   reg_parm_stack_space = REG_PARM_STACK_SPACE (fndecl);
  637. #endif
  638. #endif
  639.  
  640.   /* Warn if this value is an aggregate type,
  641.      regardless of which calling convention we are using for it.  */
  642.   if (warn_aggregate_return && AGGREGATE_TYPE_P (TREE_TYPE (exp)))
  643.     warning ("function call has aggregate value");
  644.  
  645.   /* Set up a place to return a structure.  */
  646.  
  647.   /* Cater to broken compilers.  */
  648.   if (aggregate_value_p (exp))
  649.     {
  650.       /* This call returns a big structure.  */
  651.       is_const = 0;
  652.  
  653. #ifdef PCC_STATIC_STRUCT_RETURN
  654.       {
  655.     pcc_struct_value = 1;
  656.     /* Easier than making that case work right.  */
  657.     if (is_integrable)
  658.       {
  659.         /* In case this is a static function, note that it has been
  660.            used.  */
  661.         if (! TREE_ADDRESSABLE (fndecl))
  662.           mark_addressable (fndecl);
  663.         is_integrable = 0;
  664.       }
  665.       }
  666. #else /* not PCC_STATIC_STRUCT_RETURN */
  667.       {
  668.     struct_value_size = int_size_in_bytes (TREE_TYPE (exp));
  669.  
  670.     if (struct_value_size < 0)
  671.       abort ();
  672.  
  673.     if (target && GET_CODE (target) == MEM)
  674.       structure_value_addr = XEXP (target, 0);
  675.     else
  676.       {
  677.         /* Assign a temporary on the stack to hold the value.  */
  678.  
  679.         /* For variable-sized objects, we must be called with a target
  680.            specified.  If we were to allocate space on the stack here,
  681.            we would have no way of knowing when to free it.  */
  682.  
  683.         structure_value_addr
  684.           = XEXP (assign_stack_temp (BLKmode, struct_value_size, 1), 0);
  685.         target = 0;
  686.       }
  687.       }
  688. #endif /* not PCC_STATIC_STRUCT_RETURN */
  689.     }
  690.  
  691.   /* If called function is inline, try to integrate it.  */
  692.  
  693.   if (is_integrable)
  694.     {
  695.       rtx temp;
  696.       rtx before_call = get_last_insn ();
  697.  
  698.       temp = expand_inline_function (fndecl, actparms, target,
  699.                      ignore, TREE_TYPE (exp),
  700.                      structure_value_addr);
  701.  
  702.       /* If inlining succeeded, return.  */
  703.       if ((HOST_WIDE_INT) temp != -1)
  704.     {
  705.       if (flag_short_temps)
  706.         {
  707.           /* Perform all cleanups needed for the arguments of this
  708.          call (i.e. destructors in C++).  It is ok if these
  709.          destructors clobber RETURN_VALUE_REG, because the
  710.          only time we care about this is when TARGET is that
  711.          register.  But in C++, we take care to never return
  712.          that register directly.  */
  713.           expand_cleanups_to (old_cleanups);
  714.         }
  715.  
  716. #ifdef ACCUMULATE_OUTGOING_ARGS
  717.       /* If the outgoing argument list must be preserved, push
  718.          the stack before executing the inlined function if it
  719.          makes any calls.  */
  720.  
  721.       for (i = reg_parm_stack_space - 1; i >= 0; i--)
  722.         if (i < highest_outgoing_arg_in_use && stack_usage_map[i] != 0)
  723.           break;
  724.  
  725.       if (stack_arg_under_construction || i >= 0)
  726.         {
  727.           rtx insn = NEXT_INSN (before_call), seq;
  728.  
  729.           /* Look for a call in the inline function code.
  730.          If OUTGOING_ARGS_SIZE (DECL_SAVED_INSNS (fndecl)) is
  731.          nonzero then there is a call and it is not necessary
  732.          to scan the insns.  */
  733.  
  734.           if (OUTGOING_ARGS_SIZE (DECL_SAVED_INSNS (fndecl)) == 0)
  735.         for (; insn; insn = NEXT_INSN (insn))
  736.           if (GET_CODE (insn) == CALL_INSN)
  737.             break;
  738.  
  739.           if (insn)
  740.         {
  741.           /* Reserve enough stack space so that the largest
  742.              argument list of any function call in the inline
  743.              function does not overlap the argument list being
  744.              evaluated.  This is usually an overestimate because
  745.              allocate_dynamic_stack_space reserves space for an
  746.              outgoing argument list in addition to the requested
  747.              space, but there is no way to ask for stack space such
  748.              that an argument list of a certain length can be
  749.              safely constructed.  */
  750.  
  751.           int adjust = OUTGOING_ARGS_SIZE (DECL_SAVED_INSNS (fndecl));
  752. #ifdef REG_PARM_STACK_SPACE
  753.           /* Add the stack space reserved for register arguments
  754.              in the inline function.  What is really needed is the
  755.              largest value of reg_parm_stack_space in the inline
  756.              function, but that is not available.  Using the current
  757.              value of reg_parm_stack_space is wrong, but gives
  758.              correct results on all supported machines.  */
  759.           adjust += reg_parm_stack_space;
  760. #endif
  761.           start_sequence ();
  762.           emit_stack_save (SAVE_BLOCK, &old_stack_level, NULL_RTX);
  763.           allocate_dynamic_stack_space (GEN_INT (adjust),
  764.                         NULL_RTX, BITS_PER_UNIT);
  765.           seq = get_insns ();
  766.           end_sequence ();
  767.           emit_insns_before (seq, NEXT_INSN (before_call));
  768.           emit_stack_restore (SAVE_BLOCK, old_stack_level, NULL_RTX);
  769.         }
  770.         }
  771. #endif
  772.  
  773.       /* If the result is equivalent to TARGET, return TARGET to simplify
  774.          checks in store_expr.  They can be equivalent but not equal in the
  775.          case of a function that returns BLKmode.  */
  776.       if (temp != target && rtx_equal_p (temp, target))
  777.         return target;
  778.       return temp;
  779.     }
  780.  
  781.       /* If inlining failed, mark FNDECL as needing to be compiled
  782.      separately after all.  If function was declared inline,
  783.      give a warning.  */
  784.       if (DECL_INLINE (fndecl) && warn_inline && !flag_no_inline
  785.       && ! TREE_ADDRESSABLE (fndecl))
  786.     warning_with_decl (fndecl, "can't inline call to `%s'");
  787.       mark_addressable (fndecl);
  788.     }
  789.  
  790.   /* When calling a const function, we must pop the stack args right away,
  791.      so that the pop is deleted or moved with the call.  */
  792.   if (is_const)
  793.     NO_DEFER_POP;
  794.  
  795.   function_call_count++;
  796.  
  797.   if (fndecl && DECL_NAME (fndecl))
  798.     name = IDENTIFIER_POINTER (DECL_NAME (fndecl));
  799.  
  800.   /* On some machines (such as the PA) indirect calls have a different
  801.      calling convention than normal calls.  FUNCTION_ARG in the target
  802.      description can look at current_call_is_indirect to determine which
  803.      calling convention to use.  */
  804.   current_call_is_indirect = (fndecl == 0);
  805. #if 0
  806.     = TREE_CODE (TREE_OPERAND (exp, 0)) == NON_LVALUE_EXPR ? 1 : 0;
  807. #endif
  808.  
  809. #if 0
  810.   /* Unless it's a call to a specific function that isn't alloca,
  811.      if it has one argument, we must assume it might be alloca.  */
  812.  
  813.   may_be_alloca =
  814.     (!(fndecl != 0 && strcmp (name, "alloca"))
  815.      && actparms != 0
  816.      && TREE_CHAIN (actparms) == 0);
  817. #else
  818.   /* We assume that alloca will always be called by name.  It
  819.      makes no sense to pass it as a pointer-to-function to
  820.      anything that does not understand its behavior.  */
  821.   may_be_alloca =
  822.     (name && ((IDENTIFIER_LENGTH (DECL_NAME (fndecl)) == 6
  823.          && name[0] == 'a'
  824.          && ! strcmp (name, "alloca"))
  825.         || (IDENTIFIER_LENGTH (DECL_NAME (fndecl)) == 16
  826.             && name[0] == '_'
  827.             && ! strcmp (name, "__builtin_alloca"))));
  828. #endif
  829.  
  830.   /* See if this is a call to a function that can return more than once
  831.      or a call to longjmp.  */
  832.  
  833.   returns_twice = 0;
  834.   is_longjmp = 0;
  835.  
  836.   if (name != 0 && IDENTIFIER_LENGTH (DECL_NAME (fndecl)) <= 15)
  837.     {
  838.       char *tname = name;
  839.  
  840.       /* Disregard prefix _, __ or __x.  */
  841.       if (name[0] == '_')
  842.     {
  843.       if (name[1] == '_' && name[2] == 'x')
  844.         tname += 3;
  845.       else if (name[1] == '_')
  846.         tname += 2;
  847.       else
  848.         tname += 1;
  849.     }
  850.  
  851.       if (tname[0] == 's')
  852.     {
  853.       returns_twice
  854.         = ((tname[1] == 'e'
  855.         && (! strcmp (tname, "setjmp")
  856.             || ! strcmp (tname, "setjmp_syscall")))
  857.            || (tname[1] == 'i'
  858.            && ! strcmp (tname, "sigsetjmp"))
  859.            || (tname[1] == 'a'
  860.            && ! strcmp (tname, "savectx")));
  861.       if (tname[1] == 'i'
  862.           && ! strcmp (tname, "siglongjmp"))
  863.         is_longjmp = 1;
  864.     }
  865.       else if ((tname[0] == 'q' && tname[1] == 's'
  866.         && ! strcmp (tname, "qsetjmp"))
  867.            || (tname[0] == 'v' && tname[1] == 'f'
  868.            && ! strcmp (tname, "vfork")))
  869.     returns_twice = 1;
  870.  
  871.       else if (tname[0] == 'l' && tname[1] == 'o'
  872.            && ! strcmp (tname, "longjmp"))
  873.     is_longjmp = 1;
  874.     }
  875.  
  876.   if (may_be_alloca)
  877.     current_function_calls_alloca = 1;
  878.  
  879.   /* Don't let pending stack adjusts add up to too much.
  880.      Also, do all pending adjustments now
  881.      if there is any chance this might be a call to alloca.  */
  882.  
  883.   if (pending_stack_adjust >= 32
  884.       || (pending_stack_adjust > 0 && may_be_alloca))
  885.     do_pending_stack_adjust ();
  886.  
  887.   /* Operand 0 is a pointer-to-function; get the type of the function.  */
  888.   funtype = TREE_TYPE (TREE_OPERAND (exp, 0));
  889.   if (TREE_CODE (funtype) != POINTER_TYPE)
  890.     abort ();
  891.   funtype = TREE_TYPE (funtype);
  892.  
  893.   /* Push the temporary stack slot level so that we can free any temporaries
  894.      we make.  */
  895.   push_temp_slots ();
  896.  
  897.   /* Start updating where the next arg would go.  */
  898.   INIT_CUMULATIVE_ARGS (args_so_far, funtype, NULL_RTX);
  899.  
  900.   /* If struct_value_rtx is 0, it means pass the address
  901.      as if it were an extra parameter.  */
  902.   if (structure_value_addr && struct_value_rtx == 0)
  903.     {
  904. #ifdef ACCUMULATE_OUTGOING_ARGS
  905.       /* If the stack will be adjusted, make sure the structure address
  906.      does not refer to virtual_outgoing_args_rtx.  */
  907.       rtx temp = (stack_arg_under_construction
  908.           ? copy_addr_to_reg (structure_value_addr)
  909.           : force_reg (Pmode, structure_value_addr));
  910. #else
  911.       rtx temp = force_reg (Pmode, structure_value_addr);
  912. #endif
  913.  
  914.       actparms
  915.     = tree_cons (error_mark_node,
  916.              make_tree (build_pointer_type (TREE_TYPE (funtype)),
  917.                 temp),
  918.              actparms);
  919.       structure_value_addr_parm = 1;
  920.     }
  921.  
  922.   /* Count the arguments and set NUM_ACTUALS.  */
  923.   for (p = actparms, i = 0; p; p = TREE_CHAIN (p)) i++;
  924.   num_actuals = i;
  925.  
  926.   /* Compute number of named args.
  927.      Normally, don't include the last named arg if anonymous args follow.
  928.      (If no anonymous args follow, the result of list_length
  929.      is actually one too large.)
  930.  
  931.      If SETUP_INCOMING_VARARGS is defined, this machine will be able to
  932.      place unnamed args that were passed in registers into the stack.  So
  933.      treat all args as named.  This allows the insns emitting for a specific
  934.      argument list to be independent of the function declaration.
  935.  
  936.      If SETUP_INCOMING_VARARGS is not defined, we do not have any reliable
  937.      way to pass unnamed args in registers, so we must force them into
  938.      memory.  */
  939. #ifndef SETUP_INCOMING_VARARGS
  940.   if (TYPE_ARG_TYPES (funtype) != 0)
  941.     n_named_args
  942.       = list_length (TYPE_ARG_TYPES (funtype)) - 1
  943.     /* Count the struct value address, if it is passed as a parm.  */
  944.     + structure_value_addr_parm;
  945.   else
  946. #endif
  947.     /* If we know nothing, treat all args as named.  */
  948.     n_named_args = num_actuals;
  949.  
  950.   /* Make a vector to hold all the information about each arg.  */
  951.   args = (struct arg_data *) alloca (num_actuals * sizeof (struct arg_data));
  952.   bzero ((char *) args, num_actuals * sizeof (struct arg_data));
  953.  
  954.   args_size.constant = 0;
  955.   args_size.var = 0;
  956.  
  957.   /* In this loop, we consider args in the order they are written.
  958.      We fill up ARGS from the front of from the back if necessary
  959.      so that in any case the first arg to be pushed ends up at the front.  */
  960.  
  961. #ifdef PUSH_ARGS_REVERSED
  962.   i = num_actuals - 1, inc = -1;
  963.   /* In this case, must reverse order of args
  964.      so that we compute and push the last arg first.  */
  965. #else
  966.   i = 0, inc = 1;
  967. #endif
  968.  
  969.   /* I counts args in order (to be) pushed; ARGPOS counts in order written.  */
  970.   for (p = actparms, argpos = 0; p; p = TREE_CHAIN (p), i += inc, argpos++)
  971.     {
  972.       tree type = TREE_TYPE (TREE_VALUE (p));
  973.       int unsignedp;
  974.       enum machine_mode mode;
  975.  
  976.       args[i].tree_value = TREE_VALUE (p);
  977.  
  978.       /* Replace erroneous argument with constant zero.  */
  979.       if (type == error_mark_node || TYPE_SIZE (type) == 0)
  980.     args[i].tree_value = integer_zero_node, type = integer_type_node;
  981.  
  982.       /* Decide where to pass this arg.
  983.  
  984.      args[i].reg is nonzero if all or part is passed in registers.
  985.  
  986.      args[i].partial is nonzero if part but not all is passed in registers,
  987.      and the exact value says how many words are passed in registers.
  988.  
  989.      args[i].pass_on_stack is nonzero if the argument must at least be
  990.      computed on the stack.  It may then be loaded back into registers
  991.      if args[i].reg is nonzero.
  992.  
  993.      These decisions are driven by the FUNCTION_... macros and must agree
  994.      with those made by function.c.  */
  995.  
  996.       /* See if this argument should be passed by invisible reference.  */
  997.       if ((TREE_CODE (TYPE_SIZE (type)) != INTEGER_CST
  998.        && contains_placeholder_p (TYPE_SIZE (type)))
  999.       || TYPE_NEEDS_CONSTRUCTING (type)
  1000. #ifdef FUNCTION_ARG_PASS_BY_REFERENCE
  1001.       || FUNCTION_ARG_PASS_BY_REFERENCE (args_so_far, TYPE_MODE (type),
  1002.                          type, argpos < n_named_args)
  1003. #endif
  1004.       )
  1005.     {
  1006. #ifdef FUNCTION_ARG_CALLEE_COPIES
  1007.       if (FUNCTION_ARG_CALLEE_COPIES (args_so_far, TYPE_MODE (type), type,
  1008.                       argpos < n_named_args)
  1009.           /* If it's in a register, we must make a copy of it too.  */
  1010.           /* ??? Is this a sufficient test?  Is there a better one? */
  1011.           && !(TREE_CODE (args[i].tree_value) == VAR_DECL
  1012.            && REG_P (DECL_RTL (args[i].tree_value))))
  1013.         {
  1014.           args[i].tree_value = build1 (ADDR_EXPR,
  1015.                        build_pointer_type (type),
  1016.                        args[i].tree_value);
  1017.           type = build_pointer_type (type);
  1018.         }
  1019.       else
  1020. #endif
  1021.         {
  1022.           /* We make a copy of the object and pass the address to the
  1023.          function being called.  */
  1024.           rtx copy;
  1025.  
  1026.           if (TYPE_SIZE (type) == 0
  1027.           || TREE_CODE (TYPE_SIZE (type)) != INTEGER_CST)
  1028.         {
  1029.           /* This is a variable-sized object.  Make space on the stack
  1030.              for it.  */
  1031.           rtx size_rtx = expr_size (TREE_VALUE (p));
  1032.  
  1033.           if (old_stack_level == 0)
  1034.             {
  1035.               emit_stack_save (SAVE_BLOCK, &old_stack_level, NULL_RTX);
  1036.               old_pending_adj = pending_stack_adjust;
  1037.               pending_stack_adjust = 0;
  1038.             }
  1039.  
  1040.           copy = gen_rtx (MEM, BLKmode,
  1041.                   allocate_dynamic_stack_space (size_rtx,
  1042.                                 NULL_RTX,
  1043.                                 TYPE_ALIGN (type)));
  1044.         }
  1045.           else
  1046.         {
  1047.           int size = int_size_in_bytes (type);
  1048.           copy = assign_stack_temp (TYPE_MODE (type), size, 1);
  1049.         }
  1050.  
  1051.           MEM_IN_STRUCT_P (copy) = AGGREGATE_TYPE_P (type);
  1052.  
  1053.           store_expr (args[i].tree_value, copy, 0);
  1054.  
  1055.           args[i].tree_value = build1 (ADDR_EXPR,
  1056.                        build_pointer_type (type),
  1057.                        make_tree (type, copy));
  1058.           type = build_pointer_type (type);
  1059.         }
  1060.     }
  1061.  
  1062.       mode = TYPE_MODE (type);
  1063.       unsignedp = TREE_UNSIGNED (type);
  1064.  
  1065. #ifdef PROMOTE_FUNCTION_ARGS
  1066.       mode = promote_mode (type, mode, &unsignedp, 1);
  1067. #endif
  1068.  
  1069.       args[i].unsignedp = unsignedp;
  1070.       args[i].mode = mode;
  1071.       args[i].reg = FUNCTION_ARG (args_so_far, mode, type,
  1072.                   argpos < n_named_args);
  1073. #ifdef FUNCTION_ARG_PARTIAL_NREGS
  1074.       if (args[i].reg)
  1075.     args[i].partial
  1076.       = FUNCTION_ARG_PARTIAL_NREGS (args_so_far, mode, type,
  1077.                     argpos < n_named_args);
  1078. #endif
  1079.  
  1080.       args[i].pass_on_stack = MUST_PASS_IN_STACK (mode, type);
  1081.  
  1082.       /* If FUNCTION_ARG returned an (expr_list (nil) FOO), it means that
  1083.      we are to pass this arg in the register(s) designated by FOO, but
  1084.      also to pass it in the stack.  */
  1085.       if (args[i].reg && GET_CODE (args[i].reg) == EXPR_LIST
  1086.       && XEXP (args[i].reg, 0) == 0)
  1087.     args[i].pass_on_stack = 1, args[i].reg = XEXP (args[i].reg, 1);
  1088.  
  1089.       /* If this is an addressable type, we must preallocate the stack
  1090.      since we must evaluate the object into its final location.
  1091.  
  1092.      If this is to be passed in both registers and the stack, it is simpler
  1093.      to preallocate.  */
  1094.       if (TREE_ADDRESSABLE (type)
  1095.       || (args[i].pass_on_stack && args[i].reg != 0))
  1096.     must_preallocate = 1;
  1097.  
  1098.       /* If this is an addressable type, we cannot pre-evaluate it.  Thus,
  1099.      we cannot consider this function call constant.  */
  1100.       if (TREE_ADDRESSABLE (type))
  1101.     is_const = 0;
  1102.  
  1103.       /* Compute the stack-size of this argument.  */
  1104.       if (args[i].reg == 0 || args[i].partial != 0
  1105. #ifdef REG_PARM_STACK_SPACE
  1106.       || reg_parm_stack_space > 0
  1107. #endif
  1108.       || args[i].pass_on_stack)
  1109.     locate_and_pad_parm (mode, type,
  1110. #ifdef STACK_PARMS_IN_REG_PARM_AREA
  1111.                  1,
  1112. #else
  1113.                  args[i].reg != 0,
  1114. #endif
  1115.                  fndecl, &args_size, &args[i].offset,
  1116.                  &args[i].size);
  1117.  
  1118. #ifndef ARGS_GROW_DOWNWARD
  1119.       args[i].slot_offset = args_size;
  1120. #endif
  1121.  
  1122. #ifndef REG_PARM_STACK_SPACE
  1123.       /* If a part of the arg was put into registers,
  1124.      don't include that part in the amount pushed.  */
  1125.       if (! args[i].pass_on_stack)
  1126.     args[i].size.constant -= ((args[i].partial * UNITS_PER_WORD)
  1127.                   / (PARM_BOUNDARY / BITS_PER_UNIT)
  1128.                   * (PARM_BOUNDARY / BITS_PER_UNIT));
  1129. #endif
  1130.       
  1131.       /* Update ARGS_SIZE, the total stack space for args so far.  */
  1132.  
  1133.       args_size.constant += args[i].size.constant;
  1134.       if (args[i].size.var)
  1135.     {
  1136.       ADD_PARM_SIZE (args_size, args[i].size.var);
  1137.     }
  1138.  
  1139.       /* Since the slot offset points to the bottom of the slot,
  1140.      we must record it after incrementing if the args grow down.  */
  1141. #ifdef ARGS_GROW_DOWNWARD
  1142.       args[i].slot_offset = args_size;
  1143.  
  1144.       args[i].slot_offset.constant = -args_size.constant;
  1145.       if (args_size.var)
  1146.     {
  1147.       SUB_PARM_SIZE (args[i].slot_offset, args_size.var);
  1148.     }
  1149. #endif
  1150.  
  1151.       /* Increment ARGS_SO_FAR, which has info about which arg-registers
  1152.      have been used, etc.  */
  1153.  
  1154.       FUNCTION_ARG_ADVANCE (args_so_far, TYPE_MODE (type), type,
  1155.                 argpos < n_named_args);
  1156.     }
  1157.  
  1158. #ifdef FINAL_REG_PARM_STACK_SPACE
  1159.   reg_parm_stack_space = FINAL_REG_PARM_STACK_SPACE (args_size.constant,
  1160.                              args_size.var);
  1161. #endif
  1162.       
  1163.   /* Compute the actual size of the argument block required.  The variable
  1164.      and constant sizes must be combined, the size may have to be rounded,
  1165.      and there may be a minimum required size.  */
  1166.  
  1167.   original_args_size = args_size;
  1168.   if (args_size.var)
  1169.     {
  1170.       /* If this function requires a variable-sized argument list, don't try to
  1171.      make a cse'able block for this call.  We may be able to do this
  1172.      eventually, but it is too complicated to keep track of what insns go
  1173.      in the cse'able block and which don't.  */
  1174.  
  1175.       is_const = 0;
  1176.       must_preallocate = 1;
  1177.  
  1178.       args_size.var = ARGS_SIZE_TREE (args_size);
  1179.       args_size.constant = 0;
  1180.  
  1181. #ifdef STACK_BOUNDARY
  1182.       if (STACK_BOUNDARY != BITS_PER_UNIT)
  1183.     args_size.var = round_up (args_size.var, STACK_BYTES);
  1184. #endif
  1185.  
  1186. #ifdef REG_PARM_STACK_SPACE
  1187.       if (reg_parm_stack_space > 0)
  1188.     {
  1189.       args_size.var
  1190.         = size_binop (MAX_EXPR, args_size.var,
  1191.               size_int (REG_PARM_STACK_SPACE (fndecl)));
  1192.  
  1193. #ifndef OUTGOING_REG_PARM_STACK_SPACE
  1194.       /* The area corresponding to register parameters is not to count in
  1195.          the size of the block we need.  So make the adjustment.  */
  1196.       args_size.var
  1197.         = size_binop (MINUS_EXPR, args_size.var,
  1198.               size_int (reg_parm_stack_space));
  1199. #endif
  1200.     }
  1201. #endif
  1202.     }
  1203.   else
  1204.     {
  1205. #ifdef STACK_BOUNDARY
  1206.       args_size.constant = (((args_size.constant + (STACK_BYTES - 1))
  1207.                  / STACK_BYTES) * STACK_BYTES);
  1208. #endif
  1209.  
  1210. #ifdef REG_PARM_STACK_SPACE
  1211.       args_size.constant = MAX (args_size.constant,
  1212.                 reg_parm_stack_space);
  1213. #ifdef MAYBE_REG_PARM_STACK_SPACE
  1214.       if (reg_parm_stack_space == 0)
  1215.     args_size.constant = 0;
  1216. #endif
  1217. #ifndef OUTGOING_REG_PARM_STACK_SPACE
  1218.       args_size.constant -= reg_parm_stack_space;
  1219. #endif
  1220. #endif
  1221.     }
  1222.  
  1223.   /* See if we have or want to preallocate stack space.
  1224.  
  1225.      If we would have to push a partially-in-regs parm
  1226.      before other stack parms, preallocate stack space instead.
  1227.  
  1228.      If the size of some parm is not a multiple of the required stack
  1229.      alignment, we must preallocate.
  1230.  
  1231.      If the total size of arguments that would otherwise create a copy in
  1232.      a temporary (such as a CALL) is more than half the total argument list
  1233.      size, preallocation is faster.
  1234.  
  1235.      Another reason to preallocate is if we have a machine (like the m88k)
  1236.      where stack alignment is required to be maintained between every
  1237.      pair of insns, not just when the call is made.  However, we assume here
  1238.      that such machines either do not have push insns (and hence preallocation
  1239.      would occur anyway) or the problem is taken care of with
  1240.      PUSH_ROUNDING.  */
  1241.  
  1242.   if (! must_preallocate)
  1243.     {
  1244.       int partial_seen = 0;
  1245.       int copy_to_evaluate_size = 0;
  1246.  
  1247.       for (i = 0; i < num_actuals && ! must_preallocate; i++)
  1248.     {
  1249.       if (args[i].partial > 0 && ! args[i].pass_on_stack)
  1250.         partial_seen = 1;
  1251.       else if (partial_seen && args[i].reg == 0)
  1252.         must_preallocate = 1;
  1253.  
  1254.       if (TYPE_MODE (TREE_TYPE (args[i].tree_value)) == BLKmode
  1255.           && (TREE_CODE (args[i].tree_value) == CALL_EXPR
  1256.           || TREE_CODE (args[i].tree_value) == TARGET_EXPR
  1257.           || TREE_CODE (args[i].tree_value) == COND_EXPR
  1258.           || TREE_ADDRESSABLE (TREE_TYPE (args[i].tree_value))))
  1259.         copy_to_evaluate_size
  1260.           += int_size_in_bytes (TREE_TYPE (args[i].tree_value));
  1261.     }
  1262.  
  1263.       if (copy_to_evaluate_size * 2 >= args_size.constant
  1264.       && args_size.constant > 0)
  1265.     must_preallocate = 1;
  1266.     }
  1267.  
  1268.   /* If the structure value address will reference the stack pointer, we must
  1269.      stabilize it.  We don't need to do this if we know that we are not going
  1270.      to adjust the stack pointer in processing this call.  */
  1271.  
  1272.   if (structure_value_addr
  1273.       && (reg_mentioned_p (virtual_stack_dynamic_rtx, structure_value_addr)
  1274.        || reg_mentioned_p (virtual_outgoing_args_rtx, structure_value_addr))
  1275.       && (args_size.var
  1276. #ifndef ACCUMULATE_OUTGOING_ARGS
  1277.       || args_size.constant
  1278. #endif
  1279.       ))
  1280.     structure_value_addr = copy_to_reg (structure_value_addr);
  1281.  
  1282.   /* If this function call is cse'able, precompute all the parameters.
  1283.      Note that if the parameter is constructed into a temporary, this will
  1284.      cause an additional copy because the parameter will be constructed
  1285.      into a temporary location and then copied into the outgoing arguments.
  1286.      If a parameter contains a call to alloca and this function uses the
  1287.      stack, precompute the parameter.  */
  1288.  
  1289.   /* If we preallocated the stack space, and some arguments must be passed
  1290.      on the stack, then we must precompute any parameter which contains a
  1291.      function call which will store arguments on the stack.
  1292.      Otherwise, evaluating the parameter may clobber previous parameters
  1293.      which have already been stored into the stack.  */
  1294.  
  1295.   for (i = 0; i < num_actuals; i++)
  1296.     if (is_const
  1297.     || ((args_size.var != 0 || args_size.constant != 0)
  1298.         && calls_function (args[i].tree_value, 1))
  1299.     || (must_preallocate && (args_size.var != 0 || args_size.constant != 0)
  1300.         && calls_function (args[i].tree_value, 0)))
  1301.       {
  1302.     push_temp_slots ();
  1303.  
  1304.     args[i].initial_value = args[i].value
  1305.       = expand_expr (args[i].tree_value, NULL_RTX, VOIDmode, 0);
  1306.  
  1307.     if (TYPE_MODE (TREE_TYPE (args[i].tree_value)) != args[i].mode)
  1308.       args[i].value
  1309.         = convert_modes (args[i].mode, 
  1310.                  TYPE_MODE (TREE_TYPE (args[i].tree_value)),
  1311.                  args[i].value, args[i].unsignedp);
  1312.  
  1313.     preserve_temp_slots (args[i].value);
  1314.     pop_temp_slots ();
  1315.  
  1316.     /* ANSI doesn't require a sequence point here,
  1317.        but PCC has one, so this will avoid some problems.  */
  1318.     emit_queue ();
  1319.       }
  1320.  
  1321.   /* Now we are about to start emitting insns that can be deleted
  1322.      if a libcall is deleted.  */
  1323.   if (is_const)
  1324.     start_sequence ();
  1325.  
  1326.   /* If we have no actual push instructions, or shouldn't use them,
  1327.      make space for all args right now.  */
  1328.  
  1329.   if (args_size.var != 0)
  1330.     {
  1331.       if (old_stack_level == 0)
  1332.     {
  1333.       emit_stack_save (SAVE_BLOCK, &old_stack_level, NULL_RTX);
  1334.       old_pending_adj = pending_stack_adjust;
  1335.       pending_stack_adjust = 0;
  1336. #ifdef ACCUMULATE_OUTGOING_ARGS
  1337.       /* stack_arg_under_construction says whether a stack arg is
  1338.          being constructed at the old stack level.  Pushing the stack
  1339.          gets a clean outgoing argument block.  */
  1340.       old_stack_arg_under_construction = stack_arg_under_construction;
  1341.       stack_arg_under_construction = 0;
  1342. #endif
  1343.     }
  1344.       argblock = push_block (ARGS_SIZE_RTX (args_size), 0, 0);
  1345.     }
  1346.   else if (must_preallocate)
  1347.     {
  1348.       /* Note that we must go through the motions of allocating an argument
  1349.      block even if the size is zero because we may be storing args
  1350.      in the area reserved for register arguments, which may be part of
  1351.      the stack frame.  */
  1352.       int needed = args_size.constant;
  1353.  
  1354. #ifdef ACCUMULATE_OUTGOING_ARGS
  1355.       /* Store the maximum argument space used.  It will be pushed by the
  1356.      prologue.
  1357.  
  1358.      Since the stack pointer will never be pushed, it is possible for
  1359.      the evaluation of a parm to clobber something we have already
  1360.      written to the stack.  Since most function calls on RISC machines
  1361.      do not use the stack, this is uncommon, but must work correctly.
  1362.      
  1363.      Therefore, we save any area of the stack that was already written
  1364.      and that we are using.  Here we set up to do this by making a new
  1365.      stack usage map from the old one.  The actual save will be done
  1366.      by store_one_arg. 
  1367.  
  1368.      Another approach might be to try to reorder the argument
  1369.      evaluations to avoid this conflicting stack usage.  */
  1370.  
  1371.       if (needed > current_function_outgoing_args_size)
  1372.     current_function_outgoing_args_size = needed;
  1373.  
  1374. #if defined(REG_PARM_STACK_SPACE) && ! defined(OUTGOING_REG_PARM_STACK_SPACE)
  1375.       /* Since we will be writing into the entire argument area, the
  1376.      map must be allocated for its entire size, not just the part that
  1377.      is the responsibility of the caller.  */
  1378.       needed += reg_parm_stack_space;
  1379. #endif
  1380.  
  1381. #ifdef ARGS_GROW_DOWNWARD
  1382.       highest_outgoing_arg_in_use = MAX (initial_highest_arg_in_use,
  1383.                      needed + 1);
  1384. #else
  1385.       highest_outgoing_arg_in_use = MAX (initial_highest_arg_in_use, needed);
  1386. #endif
  1387.       stack_usage_map = (char *) alloca (highest_outgoing_arg_in_use);
  1388.  
  1389.       if (initial_highest_arg_in_use)
  1390.     bcopy (initial_stack_usage_map, stack_usage_map,
  1391.            initial_highest_arg_in_use);
  1392.  
  1393.       if (initial_highest_arg_in_use != highest_outgoing_arg_in_use)
  1394.     bzero (&stack_usage_map[initial_highest_arg_in_use],
  1395.            highest_outgoing_arg_in_use - initial_highest_arg_in_use);
  1396.       needed = 0;
  1397.  
  1398.       /* The address of the outgoing argument list must not be copied to a
  1399.      register here, because argblock would be left pointing to the
  1400.      wrong place after the call to allocate_dynamic_stack_space below. */
  1401.  
  1402.       argblock = virtual_outgoing_args_rtx;
  1403.  
  1404. #else /* not ACCUMULATE_OUTGOING_ARGS */
  1405.       if (inhibit_defer_pop == 0)
  1406.     {
  1407.       /* Try to reuse some or all of the pending_stack_adjust
  1408.          to get this space.  Maybe we can avoid any pushing.  */
  1409.       if (needed > pending_stack_adjust)
  1410.         {
  1411.           needed -= pending_stack_adjust;
  1412.           pending_stack_adjust = 0;
  1413.         }
  1414.       else
  1415.         {
  1416.           pending_stack_adjust -= needed;
  1417.           needed = 0;
  1418.         }
  1419.     }
  1420.       /* Special case this because overhead of `push_block' in this
  1421.      case is non-trivial.  */
  1422.       if (needed == 0)
  1423.     argblock = virtual_outgoing_args_rtx;
  1424.       else
  1425.     argblock = push_block (GEN_INT (needed), 0, 0);
  1426.  
  1427.       /* We only really need to call `copy_to_reg' in the case where push
  1428.      insns are going to be used to pass ARGBLOCK to a function
  1429.      call in ARGS.  In that case, the stack pointer changes value
  1430.      from the allocation point to the call point, and hence
  1431.      the value of VIRTUAL_OUTGOING_ARGS_RTX changes as well.
  1432.      But might as well always do it.  */
  1433.       argblock = copy_to_reg (argblock);
  1434. #endif /* not ACCUMULATE_OUTGOING_ARGS */
  1435.     }
  1436.  
  1437.  
  1438. #ifdef ACCUMULATE_OUTGOING_ARGS
  1439.   /* The save/restore code in store_one_arg handles all cases except one:
  1440.      a constructor call (including a C function returning a BLKmode struct)
  1441.      to initialize an argument.  */
  1442.   if (stack_arg_under_construction)
  1443.     {
  1444. #if defined(REG_PARM_STACK_SPACE) && ! defined(OUTGOING_REG_PARM_STACK_SPACE)
  1445.       rtx push_size = GEN_INT (reg_parm_stack_space + args_size.constant);
  1446. #else
  1447.       rtx push_size = GEN_INT (args_size.constant);
  1448. #endif
  1449.       if (old_stack_level == 0)
  1450.     {
  1451.       emit_stack_save (SAVE_BLOCK, &old_stack_level, NULL_RTX);
  1452.       old_pending_adj = pending_stack_adjust;
  1453.       pending_stack_adjust = 0;
  1454.       /* stack_arg_under_construction says whether a stack arg is
  1455.          being constructed at the old stack level.  Pushing the stack
  1456.          gets a clean outgoing argument block.  */
  1457.       old_stack_arg_under_construction = stack_arg_under_construction;
  1458.       stack_arg_under_construction = 0;
  1459.       /* Make a new map for the new argument list.  */
  1460.       stack_usage_map = (char *)alloca (highest_outgoing_arg_in_use);
  1461.       bzero (stack_usage_map, highest_outgoing_arg_in_use);
  1462.       highest_outgoing_arg_in_use = 0;
  1463.     }
  1464.       allocate_dynamic_stack_space (push_size, NULL_RTX, BITS_PER_UNIT);
  1465.     }
  1466.   /* If argument evaluation might modify the stack pointer, copy the
  1467.      address of the argument list to a register.  */
  1468.   for (i = 0; i < num_actuals; i++)
  1469.     if (args[i].pass_on_stack)
  1470.       {
  1471.     argblock = copy_addr_to_reg (argblock);
  1472.     break;
  1473.       }
  1474. #endif
  1475.  
  1476.  
  1477.   /* If we preallocated stack space, compute the address of each argument.
  1478.      We need not ensure it is a valid memory address here; it will be 
  1479.      validized when it is used.  */
  1480.   if (argblock)
  1481.     {
  1482.       rtx arg_reg = argblock;
  1483.       int arg_offset = 0;
  1484.  
  1485.       if (GET_CODE (argblock) == PLUS)
  1486.     arg_reg = XEXP (argblock, 0), arg_offset = INTVAL (XEXP (argblock, 1));
  1487.  
  1488.       for (i = 0; i < num_actuals; i++)
  1489.     {
  1490.       rtx offset = ARGS_SIZE_RTX (args[i].offset);
  1491.       rtx slot_offset = ARGS_SIZE_RTX (args[i].slot_offset);
  1492.       rtx addr;
  1493.  
  1494.       /* Skip this parm if it will not be passed on the stack.  */
  1495.       if (! args[i].pass_on_stack && args[i].reg != 0)
  1496.         continue;
  1497.  
  1498.       if (GET_CODE (offset) == CONST_INT)
  1499.         addr = plus_constant (arg_reg, INTVAL (offset));
  1500.       else
  1501.         addr = gen_rtx (PLUS, Pmode, arg_reg, offset);
  1502.  
  1503.       addr = plus_constant (addr, arg_offset);
  1504.       args[i].stack = gen_rtx (MEM, args[i].mode, addr);
  1505.       MEM_IN_STRUCT_P (args[i].stack)
  1506.         = AGGREGATE_TYPE_P (TREE_TYPE (args[i].tree_value));
  1507.  
  1508.       if (GET_CODE (slot_offset) == CONST_INT)
  1509.         addr = plus_constant (arg_reg, INTVAL (slot_offset));
  1510.       else
  1511.         addr = gen_rtx (PLUS, Pmode, arg_reg, slot_offset);
  1512.  
  1513.       addr = plus_constant (addr, arg_offset);
  1514.       args[i].stack_slot = gen_rtx (MEM, args[i].mode, addr);
  1515.     }
  1516.     }
  1517.                            
  1518. #ifdef PUSH_ARGS_REVERSED
  1519. #ifdef STACK_BOUNDARY
  1520.   /* If we push args individually in reverse order, perform stack alignment
  1521.      before the first push (the last arg).  */
  1522.   if (argblock == 0)
  1523.     anti_adjust_stack (GEN_INT (args_size.constant
  1524.                 - original_args_size.constant));
  1525. #endif
  1526. #endif
  1527.  
  1528.   /* Don't try to defer pops if preallocating, not even from the first arg,
  1529.      since ARGBLOCK probably refers to the SP.  */
  1530.   if (argblock)
  1531.     NO_DEFER_POP;
  1532.  
  1533.   /* Get the function to call, in the form of RTL.  */
  1534.   if (fndecl)
  1535.     {
  1536.       /* If this is the first use of the function, see if we need to
  1537.      make an external definition for it.  */
  1538.       if (! TREE_USED (fndecl))
  1539.     {
  1540.       assemble_external (fndecl);
  1541.       TREE_USED (fndecl) = 1;
  1542.     }
  1543.  
  1544.       /* Get a SYMBOL_REF rtx for the function address.  */
  1545.       funexp = XEXP (DECL_RTL (fndecl), 0);
  1546.     }
  1547.   else
  1548.     /* Generate an rtx (probably a pseudo-register) for the address.  */
  1549.     {
  1550.       push_temp_slots ();
  1551.       funexp = expand_expr (TREE_OPERAND (exp, 0), NULL_RTX, VOIDmode, 0);
  1552.       pop_temp_slots ();    /* FUNEXP can't be BLKmode */
  1553.       emit_queue ();
  1554.     }
  1555.  
  1556.   /* Figure out the register where the value, if any, will come back.  */
  1557.   valreg = 0;
  1558.   if (TYPE_MODE (TREE_TYPE (exp)) != VOIDmode
  1559.       && ! structure_value_addr)
  1560.     {
  1561.       if (pcc_struct_value)
  1562.     valreg = hard_function_value (build_pointer_type (TREE_TYPE (exp)),
  1563.                       fndecl);
  1564.       else
  1565.     valreg = hard_function_value (TREE_TYPE (exp), fndecl);
  1566.     }
  1567.  
  1568.   /* Precompute all register parameters.  It isn't safe to compute anything
  1569.      once we have started filling any specific hard regs. */
  1570.   reg_parm_seen = 0;
  1571.   for (i = 0; i < num_actuals; i++)
  1572.     if (args[i].reg != 0 && ! args[i].pass_on_stack)
  1573.       {
  1574.     reg_parm_seen = 1;
  1575.  
  1576.     if (args[i].value == 0)
  1577.       {
  1578.         push_temp_slots ();
  1579.         args[i].value = expand_expr (args[i].tree_value, NULL_RTX,
  1580.                      VOIDmode, 0);
  1581.         preserve_temp_slots (args[i].value);
  1582.         pop_temp_slots ();
  1583.  
  1584.         /* ANSI doesn't require a sequence point here,
  1585.            but PCC has one, so this will avoid some problems.  */
  1586.         emit_queue ();
  1587.       }
  1588.  
  1589.     /* If we are to promote the function arg to a wider mode,
  1590.        do it now.  */
  1591.  
  1592.     if (args[i].mode != TYPE_MODE (TREE_TYPE (args[i].tree_value)))
  1593.       args[i].value
  1594.         = convert_modes (args[i].mode,
  1595.                  TYPE_MODE (TREE_TYPE (args[i].tree_value)),
  1596.                  args[i].value, args[i].unsignedp);
  1597.  
  1598.     /* If the value is expensive, and we are inside an appropriately 
  1599.        short loop, put the value into a pseudo and then put the pseudo
  1600.        into the hard reg.
  1601.  
  1602.        For small register classes, also do this if this call uses
  1603.        register parameters.  This is to avoid reload conflicts while
  1604.        loading the parameters registers.  */
  1605.  
  1606.     if ((! (GET_CODE (args[i].value) == REG
  1607.         || (GET_CODE (args[i].value) == SUBREG
  1608.             && GET_CODE (SUBREG_REG (args[i].value)) == REG)))
  1609.         && args[i].mode != BLKmode
  1610.         && rtx_cost (args[i].value, SET) > 2
  1611. #ifdef SMALL_REGISTER_CLASSES
  1612.         && (reg_parm_seen || preserve_subexpressions_p ()))
  1613. #else
  1614.         && preserve_subexpressions_p ())
  1615. #endif
  1616.       args[i].value = copy_to_mode_reg (args[i].mode, args[i].value);
  1617.       }
  1618.  
  1619. #if defined(ACCUMULATE_OUTGOING_ARGS) && defined(REG_PARM_STACK_SPACE)
  1620.   /* The argument list is the property of the called routine and it
  1621.      may clobber it.  If the fixed area has been used for previous
  1622.      parameters, we must save and restore it.
  1623.  
  1624.      Here we compute the boundary of the that needs to be saved, if any.  */
  1625.  
  1626. #ifdef ARGS_GROW_DOWNWARD
  1627.   for (i = 0; i < reg_parm_stack_space + 1; i++)
  1628. #else
  1629.   for (i = 0; i < reg_parm_stack_space; i++)
  1630. #endif
  1631.     {
  1632.       if (i >=  highest_outgoing_arg_in_use
  1633.       || stack_usage_map[i] == 0)
  1634.     continue;
  1635.  
  1636.       if (low_to_save == -1)
  1637.     low_to_save = i;
  1638.  
  1639.       high_to_save = i;
  1640.     }
  1641.  
  1642.   if (low_to_save >= 0)
  1643.     {
  1644.       int num_to_save = high_to_save - low_to_save + 1;
  1645.       enum machine_mode save_mode
  1646.     = mode_for_size (num_to_save * BITS_PER_UNIT, MODE_INT, 1);
  1647.       rtx stack_area;
  1648.  
  1649.       /* If we don't have the required alignment, must do this in BLKmode.  */
  1650.       if ((low_to_save & (MIN (GET_MODE_SIZE (save_mode),
  1651.                    BIGGEST_ALIGNMENT / UNITS_PER_WORD) - 1)))
  1652.     save_mode = BLKmode;
  1653.  
  1654.       stack_area = gen_rtx (MEM, save_mode,
  1655.                 memory_address (save_mode,
  1656.                         
  1657. #ifdef ARGS_GROW_DOWNWARD
  1658.                         plus_constant (argblock,
  1659.                                - high_to_save)
  1660. #else
  1661.                         plus_constant (argblock,
  1662.                                low_to_save)
  1663. #endif
  1664.                         ));
  1665.       if (save_mode == BLKmode)
  1666.     {
  1667.       save_area = assign_stack_temp (BLKmode, num_to_save, 1);
  1668.       emit_block_move (validize_mem (save_area), stack_area,
  1669.                GEN_INT (num_to_save),
  1670.                PARM_BOUNDARY / BITS_PER_UNIT);
  1671.     }
  1672.       else
  1673.     {
  1674.       save_area = gen_reg_rtx (save_mode);
  1675.       emit_move_insn (save_area, stack_area);
  1676.     }
  1677.     }
  1678. #endif
  1679.       
  1680.  
  1681.   /* Now store (and compute if necessary) all non-register parms.
  1682.      These come before register parms, since they can require block-moves,
  1683.      which could clobber the registers used for register parms.
  1684.      Parms which have partial registers are not stored here,
  1685.      but we do preallocate space here if they want that.  */
  1686.  
  1687.   for (i = 0; i < num_actuals; i++)
  1688.     if (args[i].reg == 0 || args[i].pass_on_stack)
  1689.       store_one_arg (&args[i], argblock, may_be_alloca,
  1690.              args_size.var != 0, fndecl, reg_parm_stack_space);
  1691.  
  1692. #ifdef STRICT_ALIGNMENT
  1693.   /* If we have a parm that is passed in registers but not in memory
  1694.      and whose alignment does not permit a direct copy into registers,
  1695.      make a group of pseudos that correspond to each register that we
  1696.      will later fill.  */
  1697.  
  1698.   for (i = 0; i < num_actuals; i++)
  1699.     if (args[i].reg != 0 && ! args[i].pass_on_stack
  1700.     && args[i].mode == BLKmode
  1701.     && (TYPE_ALIGN (TREE_TYPE (args[i].tree_value))
  1702.         < MIN (BIGGEST_ALIGNMENT, BITS_PER_WORD)))
  1703.       {
  1704.     int bytes = int_size_in_bytes (TREE_TYPE (args[i].tree_value));
  1705.     int big_endian_correction = 0;
  1706.  
  1707.     args[i].n_aligned_regs
  1708.       = args[i].partial ? args[i].partial
  1709.         : (bytes + (UNITS_PER_WORD - 1)) / UNITS_PER_WORD;
  1710.  
  1711.     args[i].aligned_regs = (rtx *) alloca (sizeof (rtx)
  1712.                            * args[i].n_aligned_regs);
  1713.  
  1714.     /* Structures smaller than a word are aligned to the least signifcant
  1715.        byte (to the right).  On a BYTES_BIG_ENDIAN machine, this means we
  1716.        must skip the empty high order bytes when calculating the bit
  1717.        offset.  */
  1718.     if (BYTES_BIG_ENDIAN && bytes < UNITS_PER_WORD)
  1719.       big_endian_correction = (BITS_PER_WORD  - (bytes * BITS_PER_UNIT));
  1720.  
  1721.     for (j = 0; j < args[i].n_aligned_regs; j++)
  1722.       {
  1723.         rtx reg = gen_reg_rtx (word_mode);
  1724.         rtx word = operand_subword_force (args[i].value, j, BLKmode);
  1725.         int bitsize = TYPE_ALIGN (TREE_TYPE (args[i].tree_value));
  1726.         int bitpos;
  1727.  
  1728.         args[i].aligned_regs[j] = reg;
  1729.  
  1730.         /* Clobber REG and move each partword into it.  Ensure we don't
  1731.            go past the end of the structure.  Note that the loop below
  1732.            works because we've already verified that padding
  1733.            and endianness are compatible.  */
  1734.  
  1735.         emit_insn (gen_rtx (CLOBBER, VOIDmode, reg));
  1736.  
  1737.         for (bitpos = 0;
  1738.          bitpos < BITS_PER_WORD && bytes > 0;
  1739.          bitpos += bitsize, bytes -= bitsize / BITS_PER_UNIT)
  1740.           {
  1741.         int xbitpos = bitpos + big_endian_correction;
  1742.  
  1743.         store_bit_field (reg, bitsize, xbitpos, word_mode,
  1744.                  extract_bit_field (word, bitsize, bitpos, 1,
  1745.                             NULL_RTX, word_mode,
  1746.                             word_mode,
  1747.                             bitsize / BITS_PER_UNIT,
  1748.                             BITS_PER_WORD),
  1749.                  bitsize / BITS_PER_UNIT, BITS_PER_WORD);
  1750.           }
  1751.       }
  1752.       }
  1753. #endif
  1754.  
  1755.   /* Now store any partially-in-registers parm.
  1756.      This is the last place a block-move can happen.  */
  1757.   if (reg_parm_seen)
  1758.     for (i = 0; i < num_actuals; i++)
  1759.       if (args[i].partial != 0 && ! args[i].pass_on_stack)
  1760.     store_one_arg (&args[i], argblock, may_be_alloca,
  1761.                args_size.var != 0, fndecl, reg_parm_stack_space);
  1762.  
  1763. #ifndef PUSH_ARGS_REVERSED
  1764. #ifdef STACK_BOUNDARY
  1765.   /* If we pushed args in forward order, perform stack alignment
  1766.      after pushing the last arg.  */
  1767.   if (argblock == 0)
  1768.     anti_adjust_stack (GEN_INT (args_size.constant
  1769.                 - original_args_size.constant));
  1770. #endif
  1771. #endif
  1772.  
  1773.   /* If register arguments require space on the stack and stack space
  1774.      was not preallocated, allocate stack space here for arguments
  1775.      passed in registers.  */
  1776. #if ! defined(ACCUMULATE_OUTGOING_ARGS) && defined(OUTGOING_REG_PARM_STACK_SPACE)
  1777.   if (must_preallocate == 0 && reg_parm_stack_space > 0)
  1778.     anti_adjust_stack (GEN_INT (reg_parm_stack_space));
  1779. #endif
  1780.  
  1781.   /* Pass the function the address in which to return a structure value.  */
  1782.   if (structure_value_addr && ! structure_value_addr_parm)
  1783.     {
  1784.       emit_move_insn (struct_value_rtx,
  1785.               force_reg (Pmode,
  1786.                  force_operand (structure_value_addr,
  1787.                         NULL_RTX)));
  1788.       if (GET_CODE (struct_value_rtx) == REG)
  1789.       use_reg (&call_fusage, struct_value_rtx);
  1790.     }
  1791.  
  1792.   funexp = prepare_call_address (funexp, fndecl, &call_fusage, reg_parm_seen);
  1793.  
  1794.   /* Now do the register loads required for any wholly-register parms or any
  1795.      parms which are passed both on the stack and in a register.  Their
  1796.      expressions were already evaluated. 
  1797.  
  1798.      Mark all register-parms as living through the call, putting these USE
  1799.      insns in the CALL_INSN_FUNCTION_USAGE field.  */
  1800.  
  1801.   for (i = 0; i < num_actuals; i++)
  1802.     {
  1803.       rtx list = args[i].reg;
  1804.       int partial = args[i].partial;
  1805.  
  1806.       while (list)
  1807.     {
  1808.       rtx reg;
  1809.       int nregs;
  1810.  
  1811.       /* Process each register that needs to get this arg.  */
  1812.       if (GET_CODE (list) == EXPR_LIST)
  1813.         reg = XEXP (list, 0), list = XEXP (list, 1);
  1814.       else
  1815.         reg = list, list = 0;
  1816.  
  1817.       /* Set to non-negative if must move a word at a time, even if just
  1818.          one word (e.g, partial == 1 && mode == DFmode).  Set to -1 if
  1819.          we just use a normal move insn.  This value can be zero if the
  1820.          argument is a zero size structure with no fields.  */
  1821.       nregs = (partial ? partial
  1822.            : (TYPE_MODE (TREE_TYPE (args[i].tree_value)) == BLKmode
  1823.               ? ((int_size_in_bytes (TREE_TYPE (args[i].tree_value))
  1824.               + (UNITS_PER_WORD - 1)) / UNITS_PER_WORD)
  1825.               : -1));
  1826.  
  1827.       /* If simple case, just do move.  If normal partial, store_one_arg
  1828.          has already loaded the register for us.  In all other cases,
  1829.          load the register(s) from memory.  */
  1830.  
  1831.       if (nregs == -1)
  1832.         emit_move_insn (reg, args[i].value);
  1833.  
  1834. #ifdef STRICT_ALIGNMENT
  1835.       /* If we have pre-computed the values to put in the registers in
  1836.          the case of non-aligned structures, copy them in now.  */
  1837.  
  1838.       else if (args[i].n_aligned_regs != 0)
  1839.         for (j = 0; j < args[i].n_aligned_regs; j++)
  1840.           emit_move_insn (gen_rtx (REG, word_mode, REGNO (reg) + j),
  1841.                   args[i].aligned_regs[j]);
  1842. #endif
  1843.  
  1844.       else if (args[i].partial == 0 || args[i].pass_on_stack)
  1845.         move_block_to_reg (REGNO (reg),
  1846.                    validize_mem (args[i].value), nregs,
  1847.                    args[i].mode);
  1848.  
  1849.       if (nregs == -1)
  1850.         use_reg (&call_fusage, reg);
  1851.       else
  1852.         use_regs (&call_fusage, REGNO (reg), nregs == 0 ? 1 : nregs);
  1853.  
  1854.       /* PARTIAL referred only to the first register, so clear it for the
  1855.          next time.  */
  1856.       partial = 0;
  1857.     }
  1858.     }
  1859.  
  1860.   /* Perform postincrements before actually calling the function.  */
  1861.   emit_queue ();
  1862.  
  1863.   /* All arguments and registers used for the call must be set up by now!  */
  1864.  
  1865.   /* Generate the actual call instruction.  */
  1866.   emit_call_1 (funexp, funtype, args_size.constant, struct_value_size,
  1867.            FUNCTION_ARG (args_so_far, VOIDmode, void_type_node, 1),
  1868.            valreg, old_inhibit_defer_pop, call_fusage, is_const);
  1869.  
  1870.   /* If call is cse'able, make appropriate pair of reg-notes around it.
  1871.      Test valreg so we don't crash; may safely ignore `const'
  1872.      if return type is void.  */
  1873.   if (is_const && valreg != 0)
  1874.     {
  1875.       rtx note = 0;
  1876.       rtx temp = gen_reg_rtx (GET_MODE (valreg));
  1877.       rtx insns;
  1878.  
  1879.       /* Construct an "equal form" for the value which mentions all the
  1880.      arguments in order as well as the function name.  */
  1881. #ifdef PUSH_ARGS_REVERSED
  1882.       for (i = 0; i < num_actuals; i++)
  1883.     note = gen_rtx (EXPR_LIST, VOIDmode, args[i].initial_value, note);
  1884. #else
  1885.       for (i = num_actuals - 1; i >= 0; i--)
  1886.     note = gen_rtx (EXPR_LIST, VOIDmode, args[i].initial_value, note);
  1887. #endif
  1888.       note = gen_rtx (EXPR_LIST, VOIDmode, funexp, note);
  1889.  
  1890.       insns = get_insns ();
  1891.       end_sequence ();
  1892.  
  1893.       emit_libcall_block (insns, temp, valreg, note);
  1894.  
  1895.       valreg = temp;
  1896.     }
  1897.  
  1898.   /* For calls to `setjmp', etc., inform flow.c it should complain
  1899.      if nonvolatile values are live.  */
  1900.  
  1901.   if (returns_twice)
  1902.     {
  1903.       emit_note (name, NOTE_INSN_SETJMP);
  1904.       current_function_calls_setjmp = 1;
  1905.     }
  1906.  
  1907.   if (is_longjmp)
  1908.     current_function_calls_longjmp = 1;
  1909.  
  1910.   /* Notice functions that cannot return.
  1911.      If optimizing, insns emitted below will be dead.
  1912.      If not optimizing, they will exist, which is useful
  1913.      if the user uses the `return' command in the debugger.  */
  1914.  
  1915.   if (is_volatile || is_longjmp)
  1916.     emit_barrier ();
  1917.  
  1918.   /* If value type not void, return an rtx for the value.  */
  1919.  
  1920.   /* If there are cleanups to be called, don't use a hard reg as target.  */
  1921.   if (cleanups_this_call != old_cleanups
  1922.       && target && REG_P (target)
  1923.       && REGNO (target) < FIRST_PSEUDO_REGISTER)
  1924.     target = 0;
  1925.  
  1926.   if (TYPE_MODE (TREE_TYPE (exp)) == VOIDmode
  1927.       || ignore)
  1928.     {
  1929.       target = const0_rtx;
  1930.     }
  1931.   else if (structure_value_addr)
  1932.     {
  1933.       if (target == 0 || GET_CODE (target) != MEM)
  1934.     {
  1935.       target = gen_rtx (MEM, TYPE_MODE (TREE_TYPE (exp)),
  1936.                 memory_address (TYPE_MODE (TREE_TYPE (exp)),
  1937.                         structure_value_addr));
  1938.       MEM_IN_STRUCT_P (target) = AGGREGATE_TYPE_P (TREE_TYPE (exp));
  1939.     }
  1940.     }
  1941.   else if (pcc_struct_value)
  1942.     {
  1943.       if (target == 0)
  1944.     {
  1945.       /* We used leave the value in the location that it is
  1946.          returned in, but that causes problems if it is used more
  1947.          than once in one expression.  Rather than trying to track
  1948.          when a copy is required, we always copy when TARGET is
  1949.          not specified.  This calling sequence is only used on
  1950.          a few machines and TARGET is usually nonzero.  */
  1951.       if (TYPE_MODE (TREE_TYPE (exp)) == BLKmode)
  1952.         {
  1953.           target = assign_stack_temp (BLKmode,
  1954.                       int_size_in_bytes (TREE_TYPE (exp)),
  1955.                       0);
  1956.  
  1957.           MEM_IN_STRUCT_P (target) = AGGREGATE_TYPE_P (TREE_TYPE (exp));
  1958.  
  1959.           /* Save this temp slot around the pop below.  */
  1960.           preserve_temp_slots (target);
  1961.         }
  1962.       else
  1963.         target = gen_reg_rtx (TYPE_MODE (TREE_TYPE (exp)));
  1964.     }
  1965.  
  1966.       if (TYPE_MODE (TREE_TYPE (exp)) != BLKmode)
  1967.     emit_move_insn (target, gen_rtx (MEM, TYPE_MODE (TREE_TYPE (exp)),
  1968.                      copy_to_reg (valreg)));
  1969.       else
  1970.     emit_block_move (target, gen_rtx (MEM, BLKmode, copy_to_reg (valreg)),
  1971.              expr_size (exp),
  1972.              TYPE_ALIGN (TREE_TYPE (exp)) / BITS_PER_UNIT);
  1973.     }
  1974.   else if (target && GET_MODE (target) == TYPE_MODE (TREE_TYPE (exp))
  1975.        && GET_MODE (target) == GET_MODE (valreg))
  1976.     /* TARGET and VALREG cannot be equal at this point because the latter
  1977.        would not have REG_FUNCTION_VALUE_P true, while the former would if
  1978.        it were referring to the same register.
  1979.  
  1980.        If they refer to the same register, this move will be a no-op, except
  1981.        when function inlining is being done.  */
  1982.     emit_move_insn (target, valreg);
  1983.   else
  1984.     target = copy_to_reg (valreg);
  1985.  
  1986. #ifdef PROMOTE_FUNCTION_RETURN
  1987.   /* If we promoted this return value, make the proper SUBREG.  TARGET
  1988.      might be const0_rtx here, so be careful.  */
  1989.   if (GET_CODE (target) == REG
  1990.       && GET_MODE (target) != TYPE_MODE (TREE_TYPE (exp)))
  1991.     {
  1992.       tree type = TREE_TYPE (exp);
  1993.       int unsignedp = TREE_UNSIGNED (type);
  1994.  
  1995.       /* If we don't promote as expected, something is wrong.  */
  1996.       if (GET_MODE (target)
  1997.       != promote_mode (type, TYPE_MODE (type), &unsignedp, 1))
  1998.     abort ();
  1999.  
  2000.       target = gen_rtx (SUBREG, TYPE_MODE (type), target, 0);
  2001.       SUBREG_PROMOTED_VAR_P (target) = 1;
  2002.       SUBREG_PROMOTED_UNSIGNED_P (target) = unsignedp;
  2003.     }
  2004. #endif
  2005.  
  2006.   if (flag_short_temps)
  2007.     {
  2008.       /* Perform all cleanups needed for the arguments of this call
  2009.      (i.e. destructors in C++).  */
  2010.       expand_cleanups_to (old_cleanups);
  2011.     }
  2012.  
  2013.   /* If size of args is variable or this was a constructor call for a stack
  2014.      argument, restore saved stack-pointer value.  */
  2015.  
  2016.   if (old_stack_level)
  2017.     {
  2018.       emit_stack_restore (SAVE_BLOCK, old_stack_level, NULL_RTX);
  2019.       pending_stack_adjust = old_pending_adj;
  2020. #ifdef ACCUMULATE_OUTGOING_ARGS
  2021.       stack_arg_under_construction = old_stack_arg_under_construction;
  2022.       highest_outgoing_arg_in_use = initial_highest_arg_in_use;
  2023.       stack_usage_map = initial_stack_usage_map;
  2024. #endif
  2025.     }
  2026. #ifdef ACCUMULATE_OUTGOING_ARGS
  2027.   else
  2028.     {
  2029. #ifdef REG_PARM_STACK_SPACE
  2030.       if (save_area)
  2031.     {
  2032.       enum machine_mode save_mode = GET_MODE (save_area);
  2033.       rtx stack_area
  2034.         = gen_rtx (MEM, save_mode,
  2035.                memory_address (save_mode,
  2036. #ifdef ARGS_GROW_DOWNWARD
  2037.                        plus_constant (argblock, - high_to_save)
  2038. #else
  2039.                        plus_constant (argblock, low_to_save)
  2040. #endif
  2041.                        ));
  2042.  
  2043.       if (save_mode != BLKmode)
  2044.         emit_move_insn (stack_area, save_area);
  2045.       else
  2046.         emit_block_move (stack_area, validize_mem (save_area),
  2047.                  GEN_INT (high_to_save - low_to_save + 1),
  2048.                  PARM_BOUNDARY / BITS_PER_UNIT);
  2049.     }
  2050. #endif
  2051.       
  2052.       /* If we saved any argument areas, restore them.  */
  2053.       for (i = 0; i < num_actuals; i++)
  2054.     if (args[i].save_area)
  2055.       {
  2056.         enum machine_mode save_mode = GET_MODE (args[i].save_area);
  2057.         rtx stack_area
  2058.           = gen_rtx (MEM, save_mode,
  2059.              memory_address (save_mode,
  2060.                      XEXP (args[i].stack_slot, 0)));
  2061.  
  2062.         if (save_mode != BLKmode)
  2063.           emit_move_insn (stack_area, args[i].save_area);
  2064.         else
  2065.           emit_block_move (stack_area, validize_mem (args[i].save_area),
  2066.                    GEN_INT (args[i].size.constant),
  2067.                    PARM_BOUNDARY / BITS_PER_UNIT);
  2068.       }
  2069.  
  2070.       highest_outgoing_arg_in_use = initial_highest_arg_in_use;
  2071.       stack_usage_map = initial_stack_usage_map;
  2072.     }
  2073. #endif
  2074.  
  2075.   /* If this was alloca, record the new stack level for nonlocal gotos.  
  2076.      Check for the handler slots since we might not have a save area
  2077.      for non-local gotos. */
  2078.  
  2079.   if (may_be_alloca && nonlocal_goto_handler_slot != 0)
  2080.     emit_stack_save (SAVE_NONLOCAL, &nonlocal_goto_stack_level, NULL_RTX);
  2081.  
  2082.   pop_temp_slots ();
  2083.  
  2084.   return target;
  2085. }
  2086.  
  2087. /* Output a library call to function FUN (a SYMBOL_REF rtx)
  2088.    (emitting the queue unless NO_QUEUE is nonzero),
  2089.    for a value of mode OUTMODE,
  2090.    with NARGS different arguments, passed as alternating rtx values
  2091.    and machine_modes to convert them to.
  2092.    The rtx values should have been passed through protect_from_queue already.
  2093.  
  2094.    NO_QUEUE will be true if and only if the library call is a `const' call
  2095.    which will be enclosed in REG_LIBCALL/REG_RETVAL notes; it is equivalent
  2096.    to the variable is_const in expand_call.
  2097.  
  2098.    NO_QUEUE must be true for const calls, because if it isn't, then
  2099.    any pending increment will be emitted between REG_LIBCALL/REG_RETVAL notes,
  2100.    and will be lost if the libcall sequence is optimized away.
  2101.  
  2102.    NO_QUEUE must be false for non-const calls, because if it isn't, the
  2103.    call insn will have its CONST_CALL_P bit set, and it will be incorrectly
  2104.    optimized.  For instance, the instruction scheduler may incorrectly
  2105.    move memory references across the non-const call.  */
  2106.  
  2107. void
  2108. emit_library_call VPROTO((rtx orgfun, int no_queue, enum machine_mode outmode,
  2109.               int nargs, ...))
  2110. {
  2111. #ifndef __STDC__
  2112.   rtx orgfun;
  2113.   int no_queue;
  2114.   enum machine_mode outmode;
  2115.   int nargs;
  2116. #endif
  2117.   va_list p;
  2118.   /* Total size in bytes of all the stack-parms scanned so far.  */
  2119.   struct args_size args_size;
  2120.   /* Size of arguments before any adjustments (such as rounding).  */
  2121.   struct args_size original_args_size;
  2122.   register int argnum;
  2123.   rtx fun;
  2124.   int inc;
  2125.   int count;
  2126.   rtx argblock = 0;
  2127.   CUMULATIVE_ARGS args_so_far;
  2128.   struct arg { rtx value; enum machine_mode mode; rtx reg; int partial;
  2129.            struct args_size offset; struct args_size size; };
  2130.   struct arg *argvec;
  2131.   int old_inhibit_defer_pop = inhibit_defer_pop;
  2132.   rtx call_fusage = 0;
  2133.   /* library calls are never indirect calls.  */
  2134.   int current_call_is_indirect = 0;
  2135.  
  2136.   VA_START (p, nargs);
  2137.  
  2138. #ifndef __STDC__
  2139.   orgfun = va_arg (p, rtx);
  2140.   no_queue = va_arg (p, int);
  2141.   outmode = va_arg (p, enum machine_mode);
  2142.   nargs = va_arg (p, int);
  2143. #endif
  2144.  
  2145.   fun = orgfun;
  2146.  
  2147.   /* Copy all the libcall-arguments out of the varargs data
  2148.      and into a vector ARGVEC.
  2149.  
  2150.      Compute how to pass each argument.  We only support a very small subset
  2151.      of the full argument passing conventions to limit complexity here since
  2152.      library functions shouldn't have many args.  */
  2153.  
  2154.   argvec = (struct arg *) alloca (nargs * sizeof (struct arg));
  2155.  
  2156.   INIT_CUMULATIVE_ARGS (args_so_far, NULL_TREE, fun);
  2157.  
  2158.   args_size.constant = 0;
  2159.   args_size.var = 0;
  2160.  
  2161.   push_temp_slots ();
  2162.  
  2163.   for (count = 0; count < nargs; count++)
  2164.     {
  2165.       rtx val = va_arg (p, rtx);
  2166.       enum machine_mode mode = va_arg (p, enum machine_mode);
  2167.  
  2168.       /* We cannot convert the arg value to the mode the library wants here;
  2169.      must do it earlier where we know the signedness of the arg.  */
  2170.       if (mode == BLKmode
  2171.       || (GET_MODE (val) != mode && GET_MODE (val) != VOIDmode))
  2172.     abort ();
  2173.  
  2174.       /* On some machines, there's no way to pass a float to a library fcn.
  2175.      Pass it as a double instead.  */
  2176. #ifdef LIBGCC_NEEDS_DOUBLE
  2177.       if (LIBGCC_NEEDS_DOUBLE && mode == SFmode)
  2178.     val = convert_modes (DFmode, SFmode, val, 0), mode = DFmode;
  2179. #endif
  2180.  
  2181.       /* There's no need to call protect_from_queue, because
  2182.      either emit_move_insn or emit_push_insn will do that.  */
  2183.  
  2184.       /* Make sure it is a reasonable operand for a move or push insn.  */
  2185.       if (GET_CODE (val) != REG && GET_CODE (val) != MEM
  2186.       && ! (CONSTANT_P (val) && LEGITIMATE_CONSTANT_P (val)))
  2187.     val = force_operand (val, NULL_RTX);
  2188.  
  2189. #ifdef FUNCTION_ARG_PASS_BY_REFERENCE
  2190.       if (FUNCTION_ARG_PASS_BY_REFERENCE (args_so_far, mode, NULL_TREE, 1))
  2191.     {
  2192.       /* We do not support FUNCTION_ARG_CALLEE_COPIES here since it can
  2193.          be viewed as just an efficiency improvement.  */
  2194.       rtx slot = assign_stack_temp (mode, GET_MODE_SIZE (mode), 0);
  2195.       emit_move_insn (slot, val);
  2196.       val = XEXP (slot, 0);
  2197.       mode = Pmode;
  2198.     }
  2199. #endif
  2200.  
  2201.       argvec[count].value = val;
  2202.       argvec[count].mode = mode;
  2203.  
  2204.       argvec[count].reg = FUNCTION_ARG (args_so_far, mode, NULL_TREE, 1);
  2205.       if (argvec[count].reg && GET_CODE (argvec[count].reg) == EXPR_LIST)
  2206.     abort ();
  2207. #ifdef FUNCTION_ARG_PARTIAL_NREGS
  2208.       argvec[count].partial
  2209.     = FUNCTION_ARG_PARTIAL_NREGS (args_so_far, mode, NULL_TREE, 1);
  2210. #else
  2211.       argvec[count].partial = 0;
  2212. #endif
  2213.  
  2214.       locate_and_pad_parm (mode, NULL_TREE,
  2215.                argvec[count].reg && argvec[count].partial == 0,
  2216.                NULL_TREE, &args_size, &argvec[count].offset,
  2217.                &argvec[count].size);
  2218.  
  2219.       if (argvec[count].size.var)
  2220.     abort ();
  2221.  
  2222. #ifndef REG_PARM_STACK_SPACE
  2223.       if (argvec[count].partial)
  2224.     argvec[count].size.constant -= argvec[count].partial * UNITS_PER_WORD;
  2225. #endif
  2226.  
  2227.       if (argvec[count].reg == 0 || argvec[count].partial != 0
  2228. #ifdef REG_PARM_STACK_SPACE
  2229.       || 1
  2230. #endif
  2231.       )
  2232.     args_size.constant += argvec[count].size.constant;
  2233.  
  2234. #ifdef ACCUMULATE_OUTGOING_ARGS
  2235.       /* If this arg is actually passed on the stack, it might be
  2236.      clobbering something we already put there (this library call might
  2237.      be inside the evaluation of an argument to a function whose call
  2238.      requires the stack).  This will only occur when the library call
  2239.      has sufficient args to run out of argument registers.  Abort in
  2240.      this case; if this ever occurs, code must be added to save and
  2241.      restore the arg slot.  */
  2242.  
  2243.       if (argvec[count].reg == 0 || argvec[count].partial != 0)
  2244.     abort ();
  2245. #endif
  2246.  
  2247.       FUNCTION_ARG_ADVANCE (args_so_far, mode, (tree)0, 1);
  2248.     }
  2249.   va_end (p);
  2250.  
  2251.   /* If this machine requires an external definition for library
  2252.      functions, write one out.  */
  2253.   assemble_external_libcall (fun);
  2254.  
  2255.   original_args_size = args_size;
  2256. #ifdef STACK_BOUNDARY
  2257.   args_size.constant = (((args_size.constant + (STACK_BYTES - 1))
  2258.              / STACK_BYTES) * STACK_BYTES);
  2259. #endif
  2260.  
  2261. #ifdef REG_PARM_STACK_SPACE
  2262.   args_size.constant = MAX (args_size.constant,
  2263.                 REG_PARM_STACK_SPACE (NULL_TREE));
  2264. #ifndef OUTGOING_REG_PARM_STACK_SPACE
  2265.   args_size.constant -= REG_PARM_STACK_SPACE (NULL_TREE);
  2266. #endif
  2267. #endif
  2268.  
  2269. #ifdef ACCUMULATE_OUTGOING_ARGS
  2270.   if (args_size.constant > current_function_outgoing_args_size)
  2271.     current_function_outgoing_args_size = args_size.constant;
  2272.   args_size.constant = 0;
  2273. #endif
  2274.  
  2275. #ifndef PUSH_ROUNDING
  2276.   argblock = push_block (GEN_INT (args_size.constant), 0, 0);
  2277. #endif
  2278.  
  2279. #ifdef PUSH_ARGS_REVERSED
  2280. #ifdef STACK_BOUNDARY
  2281.   /* If we push args individually in reverse order, perform stack alignment
  2282.      before the first push (the last arg).  */
  2283.   if (argblock == 0)
  2284.     anti_adjust_stack (GEN_INT (args_size.constant
  2285.                 - original_args_size.constant));
  2286. #endif
  2287. #endif
  2288.  
  2289. #ifdef PUSH_ARGS_REVERSED
  2290.   inc = -1;
  2291.   argnum = nargs - 1;
  2292. #else
  2293.   inc = 1;
  2294.   argnum = 0;
  2295. #endif
  2296.  
  2297.   /* Push the args that need to be pushed.  */
  2298.  
  2299.   for (count = 0; count < nargs; count++, argnum += inc)
  2300.     {
  2301.       register enum machine_mode mode = argvec[argnum].mode;
  2302.       register rtx val = argvec[argnum].value;
  2303.       rtx reg = argvec[argnum].reg;
  2304.       int partial = argvec[argnum].partial;
  2305.  
  2306.       if (! (reg != 0 && partial == 0))
  2307.     emit_push_insn (val, mode, NULL_TREE, NULL_RTX, 0, partial, reg, 0,
  2308.             argblock, GEN_INT (argvec[count].offset.constant));
  2309.       NO_DEFER_POP;
  2310.     }
  2311.  
  2312. #ifndef PUSH_ARGS_REVERSED
  2313. #ifdef STACK_BOUNDARY
  2314.   /* If we pushed args in forward order, perform stack alignment
  2315.      after pushing the last arg.  */
  2316.   if (argblock == 0)
  2317.     anti_adjust_stack (GEN_INT (args_size.constant
  2318.                 - original_args_size.constant));
  2319. #endif
  2320. #endif
  2321.  
  2322. #ifdef PUSH_ARGS_REVERSED
  2323.   argnum = nargs - 1;
  2324. #else
  2325.   argnum = 0;
  2326. #endif
  2327.  
  2328.   fun = prepare_call_address (fun, NULL_TREE, &call_fusage, 0);
  2329.  
  2330.   /* Now load any reg parms into their regs.  */
  2331.  
  2332.   for (count = 0; count < nargs; count++, argnum += inc)
  2333.     {
  2334.       register enum machine_mode mode = argvec[argnum].mode;
  2335.       register rtx val = argvec[argnum].value;
  2336.       rtx reg = argvec[argnum].reg;
  2337.       int partial = argvec[argnum].partial;
  2338.  
  2339.       if (reg != 0 && partial == 0)
  2340.     emit_move_insn (reg, val);
  2341.       NO_DEFER_POP;
  2342.     }
  2343.  
  2344.   /* For version 1.37, try deleting this entirely.  */
  2345.   if (! no_queue)
  2346.     emit_queue ();
  2347.  
  2348.   /* Any regs containing parms remain in use through the call.  */
  2349.   for (count = 0; count < nargs; count++)
  2350.     if (argvec[count].reg != 0)
  2351.        use_reg (&call_fusage, argvec[count].reg);
  2352.  
  2353.   /* Don't allow popping to be deferred, since then
  2354.      cse'ing of library calls could delete a call and leave the pop.  */
  2355.   NO_DEFER_POP;
  2356.  
  2357.   /* We pass the old value of inhibit_defer_pop + 1 to emit_call_1, which
  2358.      will set inhibit_defer_pop to that value.  */
  2359.  
  2360.   emit_call_1 (fun, get_identifier (XSTR (orgfun, 0)), args_size.constant, 0,
  2361.            FUNCTION_ARG (args_so_far, VOIDmode, void_type_node, 1),
  2362.            outmode != VOIDmode ? hard_libcall_value (outmode) : NULL_RTX,
  2363.            old_inhibit_defer_pop + 1, call_fusage, no_queue);
  2364.  
  2365.   pop_temp_slots ();
  2366.  
  2367.   /* Now restore inhibit_defer_pop to its actual original value.  */
  2368.   OK_DEFER_POP;
  2369. }
  2370.  
  2371. /* Like emit_library_call except that an extra argument, VALUE,
  2372.    comes second and says where to store the result.
  2373.    (If VALUE is zero, this function chooses a convenient way
  2374.    to return the value.
  2375.  
  2376.    This function returns an rtx for where the value is to be found.
  2377.    If VALUE is nonzero, VALUE is returned.  */
  2378.  
  2379. rtx
  2380. emit_library_call_value VPROTO((rtx orgfun, rtx value, int no_queue,
  2381.                 enum machine_mode outmode, int nargs, ...))
  2382. {
  2383. #ifndef __STDC__
  2384.   rtx orgfun;
  2385.   rtx value;
  2386.   int no_queue;
  2387.   enum machine_mode outmode;
  2388.   int nargs;
  2389. #endif
  2390.   va_list p;
  2391.   /* Total size in bytes of all the stack-parms scanned so far.  */
  2392.   struct args_size args_size;
  2393.   /* Size of arguments before any adjustments (such as rounding).  */
  2394.   struct args_size original_args_size;
  2395.   register int argnum;
  2396.   rtx fun;
  2397.   int inc;
  2398.   int count;
  2399.   rtx argblock = 0;
  2400.   CUMULATIVE_ARGS args_so_far;
  2401.   struct arg { rtx value; enum machine_mode mode; rtx reg; int partial;
  2402.            struct args_size offset; struct args_size size; };
  2403.   struct arg *argvec;
  2404.   int old_inhibit_defer_pop = inhibit_defer_pop;
  2405.   rtx call_fusage = 0;
  2406.   rtx mem_value = 0;
  2407.   int pcc_struct_value = 0;
  2408.   int struct_value_size = 0;
  2409.   /* library calls are never indirect calls.  */
  2410.   int current_call_is_indirect = 0;
  2411.   int is_const;
  2412.  
  2413.   VA_START (p, nargs);
  2414.  
  2415. #ifndef __STDC__
  2416.   orgfun = va_arg (p, rtx);
  2417.   value = va_arg (p, rtx);
  2418.   no_queue = va_arg (p, int);
  2419.   outmode = va_arg (p, enum machine_mode);
  2420.   nargs = va_arg (p, int);
  2421. #endif
  2422.  
  2423.   is_const = no_queue;
  2424.   fun = orgfun;
  2425.  
  2426.   /* If this kind of value comes back in memory,
  2427.      decide where in memory it should come back.  */
  2428.   if (aggregate_value_p (type_for_mode (outmode, 0)))
  2429.     {
  2430. #ifdef PCC_STATIC_STRUCT_RETURN
  2431.       rtx pointer_reg
  2432.     = hard_function_value (build_pointer_type (type_for_mode (outmode, 0)),
  2433.                    0);
  2434.       mem_value = gen_rtx (MEM, outmode, pointer_reg);
  2435.       pcc_struct_value = 1;
  2436.       if (value == 0)
  2437.     value = gen_reg_rtx (outmode);
  2438. #else /* not PCC_STATIC_STRUCT_RETURN */
  2439.       struct_value_size = GET_MODE_SIZE (outmode);
  2440.       if (value != 0 && GET_CODE (value) == MEM)
  2441.     mem_value = value;
  2442.       else
  2443.     mem_value = assign_stack_temp (outmode, GET_MODE_SIZE (outmode), 0);
  2444. #endif
  2445.  
  2446.       /* This call returns a big structure.  */
  2447.       is_const = 0;
  2448.     }
  2449.  
  2450.   /* ??? Unfinished: must pass the memory address as an argument.  */
  2451.  
  2452.   /* Copy all the libcall-arguments out of the varargs data
  2453.      and into a vector ARGVEC.
  2454.  
  2455.      Compute how to pass each argument.  We only support a very small subset
  2456.      of the full argument passing conventions to limit complexity here since
  2457.      library functions shouldn't have many args.  */
  2458.  
  2459.   argvec = (struct arg *) alloca ((nargs + 1) * sizeof (struct arg));
  2460.  
  2461.   INIT_CUMULATIVE_ARGS (args_so_far, NULL_TREE, fun);
  2462.  
  2463.   args_size.constant = 0;
  2464.   args_size.var = 0;
  2465.  
  2466.   count = 0;
  2467.  
  2468.   push_temp_slots ();
  2469.  
  2470.   /* If there's a structure value address to be passed,
  2471.      either pass it in the special place, or pass it as an extra argument.  */
  2472.   if (mem_value && struct_value_rtx == 0 && ! pcc_struct_value)
  2473.     {
  2474.       rtx addr = XEXP (mem_value, 0);
  2475.       nargs++;
  2476.  
  2477.       /* Make sure it is a reasonable operand for a move or push insn.  */
  2478.       if (GET_CODE (addr) != REG && GET_CODE (addr) != MEM
  2479.       && ! (CONSTANT_P (addr) && LEGITIMATE_CONSTANT_P (addr)))
  2480.     addr = force_operand (addr, NULL_RTX);
  2481.  
  2482.       argvec[count].value = addr;
  2483.       argvec[count].mode = Pmode;
  2484.       argvec[count].partial = 0;
  2485.  
  2486.       argvec[count].reg = FUNCTION_ARG (args_so_far, Pmode, NULL_TREE, 1);
  2487. #ifdef FUNCTION_ARG_PARTIAL_NREGS
  2488.       if (FUNCTION_ARG_PARTIAL_NREGS (args_so_far, Pmode, NULL_TREE, 1))
  2489.     abort ();
  2490. #endif
  2491.  
  2492.       locate_and_pad_parm (Pmode, NULL_TREE,
  2493.                argvec[count].reg && argvec[count].partial == 0,
  2494.                NULL_TREE, &args_size, &argvec[count].offset,
  2495.                &argvec[count].size);
  2496.  
  2497.  
  2498.       if (argvec[count].reg == 0 || argvec[count].partial != 0
  2499. #ifdef REG_PARM_STACK_SPACE
  2500.       || 1
  2501. #endif
  2502.       )
  2503.     args_size.constant += argvec[count].size.constant;
  2504.  
  2505.       FUNCTION_ARG_ADVANCE (args_so_far, Pmode, (tree)0, 1);
  2506.  
  2507.       count++;
  2508.     }
  2509.  
  2510.   for (; count < nargs; count++)
  2511.     {
  2512.       rtx val = va_arg (p, rtx);
  2513.       enum machine_mode mode = va_arg (p, enum machine_mode);
  2514.  
  2515.       /* We cannot convert the arg value to the mode the library wants here;
  2516.      must do it earlier where we know the signedness of the arg.  */
  2517.       if (mode == BLKmode
  2518.       || (GET_MODE (val) != mode && GET_MODE (val) != VOIDmode))
  2519.     abort ();
  2520.  
  2521.       /* On some machines, there's no way to pass a float to a library fcn.
  2522.      Pass it as a double instead.  */
  2523. #ifdef LIBGCC_NEEDS_DOUBLE
  2524.       if (LIBGCC_NEEDS_DOUBLE && mode == SFmode)
  2525.     val = convert_modes (DFmode, SFmode, val, 0), mode = DFmode;
  2526. #endif
  2527.  
  2528.       /* There's no need to call protect_from_queue, because
  2529.      either emit_move_insn or emit_push_insn will do that.  */
  2530.  
  2531.       /* Make sure it is a reasonable operand for a move or push insn.  */
  2532.       if (GET_CODE (val) != REG && GET_CODE (val) != MEM
  2533.       && ! (CONSTANT_P (val) && LEGITIMATE_CONSTANT_P (val)))
  2534.     val = force_operand (val, NULL_RTX);
  2535.  
  2536. #ifdef FUNCTION_ARG_PASS_BY_REFERENCE
  2537.       if (FUNCTION_ARG_PASS_BY_REFERENCE (args_so_far, mode, NULL_TREE, 1))
  2538.     {
  2539.       /* We do not support FUNCTION_ARG_CALLEE_COPIES here since it can
  2540.          be viewed as just an efficiency improvement.  */
  2541.       rtx slot = assign_stack_temp (mode, GET_MODE_SIZE (mode), 0);
  2542.       emit_move_insn (slot, val);
  2543.       val = XEXP (slot, 0);
  2544.       mode = Pmode;
  2545.     }
  2546. #endif
  2547.  
  2548.       argvec[count].value = val;
  2549.       argvec[count].mode = mode;
  2550.  
  2551.       argvec[count].reg = FUNCTION_ARG (args_so_far, mode, NULL_TREE, 1);
  2552.       if (argvec[count].reg && GET_CODE (argvec[count].reg) == EXPR_LIST)
  2553.     abort ();
  2554. #ifdef FUNCTION_ARG_PARTIAL_NREGS
  2555.       argvec[count].partial
  2556.     = FUNCTION_ARG_PARTIAL_NREGS (args_so_far, mode, NULL_TREE, 1);
  2557. #else
  2558.       argvec[count].partial = 0;
  2559. #endif
  2560.  
  2561.       locate_and_pad_parm (mode, NULL_TREE,
  2562.                argvec[count].reg && argvec[count].partial == 0,
  2563.                NULL_TREE, &args_size, &argvec[count].offset,
  2564.                &argvec[count].size);
  2565.  
  2566.       if (argvec[count].size.var)
  2567.     abort ();
  2568.  
  2569. #ifndef REG_PARM_STACK_SPACE
  2570.       if (argvec[count].partial)
  2571.     argvec[count].size.constant -= argvec[count].partial * UNITS_PER_WORD;
  2572. #endif
  2573.  
  2574.       if (argvec[count].reg == 0 || argvec[count].partial != 0
  2575. #ifdef REG_PARM_STACK_SPACE
  2576.       || 1
  2577. #endif
  2578.       )
  2579.     args_size.constant += argvec[count].size.constant;
  2580.  
  2581. #ifdef ACCUMULATE_OUTGOING_ARGS
  2582.       /* If this arg is actually passed on the stack, it might be
  2583.      clobbering something we already put there (this library call might
  2584.      be inside the evaluation of an argument to a function whose call
  2585.      requires the stack).  This will only occur when the library call
  2586.      has sufficient args to run out of argument registers.  Abort in
  2587.      this case; if this ever occurs, code must be added to save and
  2588.      restore the arg slot.  */
  2589.  
  2590.       if (argvec[count].reg == 0 || argvec[count].partial != 0)
  2591.     abort ();
  2592. #endif
  2593.  
  2594.       FUNCTION_ARG_ADVANCE (args_so_far, mode, (tree)0, 1);
  2595.     }
  2596.   va_end (p);
  2597.  
  2598.   /* If this machine requires an external definition for library
  2599.      functions, write one out.  */
  2600.   assemble_external_libcall (fun);
  2601.  
  2602.   original_args_size = args_size;
  2603. #ifdef STACK_BOUNDARY
  2604.   args_size.constant = (((args_size.constant + (STACK_BYTES - 1))
  2605.              / STACK_BYTES) * STACK_BYTES);
  2606. #endif
  2607.  
  2608. #ifdef REG_PARM_STACK_SPACE
  2609.   args_size.constant = MAX (args_size.constant,
  2610.                 REG_PARM_STACK_SPACE (NULL_TREE));
  2611. #ifndef OUTGOING_REG_PARM_STACK_SPACE
  2612.   args_size.constant -= REG_PARM_STACK_SPACE (NULL_TREE);
  2613. #endif
  2614. #endif
  2615.  
  2616. #ifdef ACCUMULATE_OUTGOING_ARGS
  2617.   if (args_size.constant > current_function_outgoing_args_size)
  2618.     current_function_outgoing_args_size = args_size.constant;
  2619.   args_size.constant = 0;
  2620. #endif
  2621.  
  2622. #ifndef PUSH_ROUNDING
  2623.   argblock = push_block (GEN_INT (args_size.constant), 0, 0);
  2624. #endif
  2625.  
  2626. #ifdef PUSH_ARGS_REVERSED
  2627. #ifdef STACK_BOUNDARY
  2628.   /* If we push args individually in reverse order, perform stack alignment
  2629.      before the first push (the last arg).  */
  2630.   if (argblock == 0)
  2631.     anti_adjust_stack (GEN_INT (args_size.constant
  2632.                 - original_args_size.constant));
  2633. #endif
  2634. #endif
  2635.  
  2636. #ifdef PUSH_ARGS_REVERSED
  2637.   inc = -1;
  2638.   argnum = nargs - 1;
  2639. #else
  2640.   inc = 1;
  2641.   argnum = 0;
  2642. #endif
  2643.  
  2644.   /* Push the args that need to be pushed.  */
  2645.  
  2646.   for (count = 0; count < nargs; count++, argnum += inc)
  2647.     {
  2648.       register enum machine_mode mode = argvec[argnum].mode;
  2649.       register rtx val = argvec[argnum].value;
  2650.       rtx reg = argvec[argnum].reg;
  2651.       int partial = argvec[argnum].partial;
  2652.  
  2653.       if (! (reg != 0 && partial == 0))
  2654.     emit_push_insn (val, mode, NULL_TREE, NULL_RTX, 0, partial, reg, 0,
  2655.             argblock, GEN_INT (argvec[count].offset.constant));
  2656.       NO_DEFER_POP;
  2657.     }
  2658.  
  2659. #ifndef PUSH_ARGS_REVERSED
  2660. #ifdef STACK_BOUNDARY
  2661.   /* If we pushed args in forward order, perform stack alignment
  2662.      after pushing the last arg.  */
  2663.   if (argblock == 0)
  2664.     anti_adjust_stack (GEN_INT (args_size.constant
  2665.                 - original_args_size.constant));
  2666. #endif
  2667. #endif
  2668.  
  2669. #ifdef PUSH_ARGS_REVERSED
  2670.   argnum = nargs - 1;
  2671. #else
  2672.   argnum = 0;
  2673. #endif
  2674.  
  2675.   fun = prepare_call_address (fun, NULL_TREE, &call_fusage, 0);
  2676.  
  2677.   /* Now load any reg parms into their regs.  */
  2678.  
  2679.   for (count = 0; count < nargs; count++, argnum += inc)
  2680.     {
  2681.       register enum machine_mode mode = argvec[argnum].mode;
  2682.       register rtx val = argvec[argnum].value;
  2683.       rtx reg = argvec[argnum].reg;
  2684.       int partial = argvec[argnum].partial;
  2685.  
  2686.       if (reg != 0 && partial == 0)
  2687.     emit_move_insn (reg, val);
  2688.       NO_DEFER_POP;
  2689.     }
  2690.  
  2691. #if 0
  2692.   /* For version 1.37, try deleting this entirely.  */
  2693.   if (! no_queue)
  2694.     emit_queue ();
  2695. #endif
  2696.  
  2697.   /* Any regs containing parms remain in use through the call.  */
  2698.   for (count = 0; count < nargs; count++)
  2699.     if (argvec[count].reg != 0)
  2700.        use_reg (&call_fusage, argvec[count].reg);
  2701.  
  2702.   /* Pass the function the address in which to return a structure value.  */
  2703.   if (mem_value != 0 && struct_value_rtx != 0 && ! pcc_struct_value)
  2704.     {
  2705.       emit_move_insn (struct_value_rtx,
  2706.               force_reg (Pmode,
  2707.                  force_operand (XEXP (mem_value, 0),
  2708.                         NULL_RTX)));
  2709.       if (GET_CODE (struct_value_rtx) == REG)
  2710.       use_reg (&call_fusage, struct_value_rtx);
  2711.     }
  2712.  
  2713.   /* Don't allow popping to be deferred, since then
  2714.      cse'ing of library calls could delete a call and leave the pop.  */
  2715.   NO_DEFER_POP;
  2716.  
  2717.   /* We pass the old value of inhibit_defer_pop + 1 to emit_call_1, which
  2718.      will set inhibit_defer_pop to that value.  */
  2719.  
  2720.   emit_call_1 (fun, get_identifier (XSTR (orgfun, 0)), args_size.constant,
  2721.            struct_value_size,
  2722.            FUNCTION_ARG (args_so_far, VOIDmode, void_type_node, 1),
  2723.            (outmode != VOIDmode && mem_value == 0
  2724.         ? hard_libcall_value (outmode) : NULL_RTX),
  2725.            old_inhibit_defer_pop + 1, call_fusage, is_const);
  2726.  
  2727.   /* Now restore inhibit_defer_pop to its actual original value.  */
  2728.   OK_DEFER_POP;
  2729.  
  2730.   pop_temp_slots ();
  2731.  
  2732.   /* Copy the value to the right place.  */
  2733.   if (outmode != VOIDmode)
  2734.     {
  2735.       if (mem_value)
  2736.     {
  2737.       if (value == 0)
  2738.         value = mem_value;
  2739.       if (value != mem_value)
  2740.         emit_move_insn (value, mem_value);
  2741.     }
  2742.       else if (value != 0)
  2743.     emit_move_insn (value, hard_libcall_value (outmode));
  2744.       else
  2745.     value = hard_libcall_value (outmode);
  2746.     }
  2747.  
  2748.   return value;
  2749. }
  2750.  
  2751. #if 0
  2752. /* Return an rtx which represents a suitable home on the stack
  2753.    given TYPE, the type of the argument looking for a home.
  2754.    This is called only for BLKmode arguments.
  2755.  
  2756.    SIZE is the size needed for this target.
  2757.    ARGS_ADDR is the address of the bottom of the argument block for this call.
  2758.    OFFSET describes this parameter's offset into ARGS_ADDR.  It is meaningless
  2759.    if this machine uses push insns.  */
  2760.  
  2761. static rtx
  2762. target_for_arg (type, size, args_addr, offset)
  2763.      tree type;
  2764.      rtx size;
  2765.      rtx args_addr;
  2766.      struct args_size offset;
  2767. {
  2768.   rtx target;
  2769.   rtx offset_rtx = ARGS_SIZE_RTX (offset);
  2770.  
  2771.   /* We do not call memory_address if possible,
  2772.      because we want to address as close to the stack
  2773.      as possible.  For non-variable sized arguments,
  2774.      this will be stack-pointer relative addressing.  */
  2775.   if (GET_CODE (offset_rtx) == CONST_INT)
  2776.     target = plus_constant (args_addr, INTVAL (offset_rtx));
  2777.   else
  2778.     {
  2779.       /* I have no idea how to guarantee that this
  2780.      will work in the presence of register parameters.  */
  2781.       target = gen_rtx (PLUS, Pmode, args_addr, offset_rtx);
  2782.       target = memory_address (QImode, target);
  2783.     }
  2784.  
  2785.   return gen_rtx (MEM, BLKmode, target);
  2786. }
  2787. #endif
  2788.  
  2789. /* Store a single argument for a function call
  2790.    into the register or memory area where it must be passed.
  2791.    *ARG describes the argument value and where to pass it.
  2792.  
  2793.    ARGBLOCK is the address of the stack-block for all the arguments,
  2794.    or 0 on a machine where arguments are pushed individually.
  2795.  
  2796.    MAY_BE_ALLOCA nonzero says this could be a call to `alloca'
  2797.    so must be careful about how the stack is used. 
  2798.  
  2799.    VARIABLE_SIZE nonzero says that this was a variable-sized outgoing
  2800.    argument stack.  This is used if ACCUMULATE_OUTGOING_ARGS to indicate
  2801.    that we need not worry about saving and restoring the stack.
  2802.  
  2803.    FNDECL is the declaration of the function we are calling.  */
  2804.  
  2805. static void
  2806. store_one_arg (arg, argblock, may_be_alloca, variable_size, fndecl,
  2807.            reg_parm_stack_space)
  2808.      struct arg_data *arg;
  2809.      rtx argblock;
  2810.      int may_be_alloca;
  2811.      int variable_size;
  2812.      tree fndecl;
  2813.      int reg_parm_stack_space;
  2814. {
  2815.   register tree pval = arg->tree_value;
  2816.   rtx reg = 0;
  2817.   int partial = 0;
  2818.   int used = 0;
  2819.   int i, lower_bound, upper_bound;
  2820.  
  2821.   if (TREE_CODE (pval) == ERROR_MARK)
  2822.     return;
  2823.  
  2824.   /* Push a new temporary level for any temporaries we make for
  2825.      this argument.  */
  2826.   push_temp_slots ();
  2827.  
  2828. #ifdef ACCUMULATE_OUTGOING_ARGS
  2829.   /* If this is being stored into a pre-allocated, fixed-size, stack area,
  2830.      save any previous data at that location.  */
  2831.   if (argblock && ! variable_size && arg->stack)
  2832.     {
  2833. #ifdef ARGS_GROW_DOWNWARD
  2834.       /* stack_slot is negative, but we want to index stack_usage_map */
  2835.       /* with positive values. */
  2836.       if (GET_CODE (XEXP (arg->stack_slot, 0)) == PLUS)
  2837.     upper_bound = -INTVAL (XEXP (XEXP (arg->stack_slot, 0), 1)) + 1;
  2838.       else
  2839.     abort ();
  2840.  
  2841.       lower_bound = upper_bound - arg->size.constant;
  2842. #else
  2843.       if (GET_CODE (XEXP (arg->stack_slot, 0)) == PLUS)
  2844.     lower_bound = INTVAL (XEXP (XEXP (arg->stack_slot, 0), 1));
  2845.       else
  2846.     lower_bound = 0;
  2847.  
  2848.       upper_bound = lower_bound + arg->size.constant;
  2849. #endif
  2850.  
  2851.       for (i = lower_bound; i < upper_bound; i++)
  2852.     if (stack_usage_map[i]
  2853. #ifdef REG_PARM_STACK_SPACE
  2854.         /* Don't store things in the fixed argument area at this point;
  2855.            it has already been saved.  */
  2856.         && i > reg_parm_stack_space
  2857. #endif
  2858.         )
  2859.       break;
  2860.  
  2861.       if (i != upper_bound)
  2862.     {
  2863.       /* We need to make a save area.  See what mode we can make it.  */
  2864.       enum machine_mode save_mode
  2865.         = mode_for_size (arg->size.constant * BITS_PER_UNIT, MODE_INT, 1);
  2866.       rtx stack_area
  2867.         = gen_rtx (MEM, save_mode,
  2868.                memory_address (save_mode, XEXP (arg->stack_slot, 0)));
  2869.  
  2870.       if (save_mode == BLKmode)
  2871.         {
  2872.           arg->save_area = assign_stack_temp (BLKmode,
  2873.                           arg->size.constant, 1);
  2874.           preserve_temp_slots (arg->save_area);
  2875.           emit_block_move (validize_mem (arg->save_area), stack_area,
  2876.                    GEN_INT (arg->size.constant),
  2877.                    PARM_BOUNDARY / BITS_PER_UNIT);
  2878.         }
  2879.       else
  2880.         {
  2881.           arg->save_area = gen_reg_rtx (save_mode);
  2882.           emit_move_insn (arg->save_area, stack_area);
  2883.         }
  2884.     }
  2885.     }
  2886. #endif
  2887.  
  2888.   /* If this isn't going to be placed on both the stack and in registers,
  2889.      set up the register and number of words.  */
  2890.   if (! arg->pass_on_stack)
  2891.     reg = arg->reg, partial = arg->partial;
  2892.  
  2893.   if (reg != 0 && partial == 0)
  2894.     /* Being passed entirely in a register.  We shouldn't be called in
  2895.        this case.   */
  2896.     abort ();
  2897.  
  2898. #ifdef STRICT_ALIGNMENT
  2899.   /* If this arg needs special alignment, don't load the registers
  2900.      here.  */
  2901.   if (arg->n_aligned_regs != 0)
  2902.     reg = 0;
  2903. #endif
  2904.   
  2905.   /* If this is being partially passed in a register, but multiple locations
  2906.      are specified, we assume that the one partially used is the one that is
  2907.      listed first.  */
  2908.   if (reg && GET_CODE (reg) == EXPR_LIST)
  2909.     reg = XEXP (reg, 0);
  2910.  
  2911.   /* If this is being passed partially in a register, we can't evaluate
  2912.      it directly into its stack slot.  Otherwise, we can.  */
  2913.   if (arg->value == 0)
  2914.     {
  2915. #ifdef ACCUMULATE_OUTGOING_ARGS
  2916.       /* stack_arg_under_construction is nonzero if a function argument is
  2917.      being evaluated directly into the outgoing argument list and
  2918.      expand_call must take special action to preserve the argument list
  2919.      if it is called recursively.
  2920.  
  2921.      For scalar function arguments stack_usage_map is sufficient to
  2922.      determine which stack slots must be saved and restored.  Scalar
  2923.      arguments in general have pass_on_stack == 0.
  2924.  
  2925.      If this argument is initialized by a function which takes the
  2926.      address of the argument (a C++ constructor or a C function
  2927.      returning a BLKmode structure), then stack_usage_map is
  2928.      insufficient and expand_call must push the stack around the
  2929.      function call.  Such arguments have pass_on_stack == 1.
  2930.  
  2931.      Note that it is always safe to set stack_arg_under_construction,
  2932.      but this generates suboptimal code if set when not needed.  */
  2933.  
  2934.       if (arg->pass_on_stack)
  2935.     stack_arg_under_construction++;
  2936. #endif
  2937.       arg->value = expand_expr (pval,
  2938.                 (partial
  2939.                  || TYPE_MODE (TREE_TYPE (pval)) != arg->mode)
  2940.                 ? NULL_RTX : arg->stack,
  2941.                 VOIDmode, 0);
  2942.  
  2943.       /* If we are promoting object (or for any other reason) the mode
  2944.      doesn't agree, convert the mode.  */
  2945.  
  2946.       if (arg->mode != TYPE_MODE (TREE_TYPE (pval)))
  2947.     arg->value = convert_modes (arg->mode, TYPE_MODE (TREE_TYPE (pval)),
  2948.                     arg->value, arg->unsignedp);
  2949.  
  2950. #ifdef ACCUMULATE_OUTGOING_ARGS
  2951.       if (arg->pass_on_stack)
  2952.     stack_arg_under_construction--;
  2953. #endif
  2954.     }
  2955.  
  2956.   /* Don't allow anything left on stack from computation
  2957.      of argument to alloca.  */
  2958.   if (may_be_alloca)
  2959.     do_pending_stack_adjust ();
  2960.  
  2961.   if (arg->value == arg->stack)
  2962.     /* If the value is already in the stack slot, we are done.  */
  2963.     ;
  2964.   else if (arg->mode != BLKmode)
  2965.     {
  2966.       register int size;
  2967.  
  2968.       /* Argument is a scalar, not entirely passed in registers.
  2969.      (If part is passed in registers, arg->partial says how much
  2970.      and emit_push_insn will take care of putting it there.)
  2971.      
  2972.      Push it, and if its size is less than the
  2973.      amount of space allocated to it,
  2974.      also bump stack pointer by the additional space.
  2975.      Note that in C the default argument promotions
  2976.      will prevent such mismatches.  */
  2977.  
  2978.       size = GET_MODE_SIZE (arg->mode);
  2979.       /* Compute how much space the push instruction will push.
  2980.      On many machines, pushing a byte will advance the stack
  2981.      pointer by a halfword.  */
  2982. #ifdef PUSH_ROUNDING
  2983.       size = PUSH_ROUNDING (size);
  2984. #endif
  2985.       used = size;
  2986.  
  2987.       /* Compute how much space the argument should get:
  2988.      round up to a multiple of the alignment for arguments.  */
  2989.       if (none != FUNCTION_ARG_PADDING (arg->mode, TREE_TYPE (pval)))
  2990.     used = (((size + PARM_BOUNDARY / BITS_PER_UNIT - 1)
  2991.          / (PARM_BOUNDARY / BITS_PER_UNIT))
  2992.         * (PARM_BOUNDARY / BITS_PER_UNIT));
  2993.  
  2994.       /* This isn't already where we want it on the stack, so put it there.
  2995.      This can either be done with push or copy insns.  */
  2996.       emit_push_insn (arg->value, arg->mode, TREE_TYPE (pval), NULL_RTX,
  2997.               0, partial, reg, used - size,
  2998.               argblock, ARGS_SIZE_RTX (arg->offset));
  2999.     }
  3000.   else
  3001.     {
  3002.       /* BLKmode, at least partly to be pushed.  */
  3003.  
  3004.       register int excess;
  3005.       rtx size_rtx;
  3006.  
  3007.       /* Pushing a nonscalar.
  3008.      If part is passed in registers, PARTIAL says how much
  3009.      and emit_push_insn will take care of putting it there.  */
  3010.  
  3011.       /* Round its size up to a multiple
  3012.      of the allocation unit for arguments.  */
  3013.  
  3014.       if (arg->size.var != 0)
  3015.     {
  3016.       excess = 0;
  3017.       size_rtx = ARGS_SIZE_RTX (arg->size);
  3018.     }
  3019.       else
  3020.     {
  3021.       /* PUSH_ROUNDING has no effect on us, because
  3022.          emit_push_insn for BLKmode is careful to avoid it.  */
  3023.       excess = (arg->size.constant - int_size_in_bytes (TREE_TYPE (pval))
  3024.             + partial * UNITS_PER_WORD);
  3025.       size_rtx = expr_size (pval);
  3026.     }
  3027.  
  3028.       emit_push_insn (arg->value, arg->mode, TREE_TYPE (pval), size_rtx,
  3029.               TYPE_ALIGN (TREE_TYPE (pval)) / BITS_PER_UNIT, partial,
  3030.               reg, excess, argblock, ARGS_SIZE_RTX (arg->offset));
  3031.     }
  3032.  
  3033.  
  3034.   /* Unless this is a partially-in-register argument, the argument is now
  3035.      in the stack. 
  3036.  
  3037.      ??? Note that this can change arg->value from arg->stack to
  3038.      arg->stack_slot and it matters when they are not the same.
  3039.      It isn't totally clear that this is correct in all cases.  */
  3040.   if (partial == 0)
  3041.     arg->value = arg->stack_slot;
  3042.  
  3043.   /* Once we have pushed something, pops can't safely
  3044.      be deferred during the rest of the arguments.  */
  3045.   NO_DEFER_POP;
  3046.  
  3047.   /* ANSI doesn't require a sequence point here,
  3048.      but PCC has one, so this will avoid some problems.  */
  3049.   emit_queue ();
  3050.  
  3051.   /* Free any temporary slots made in processing this argument.  */
  3052.   free_temp_slots ();
  3053.   pop_temp_slots ();
  3054.  
  3055. #ifdef ACCUMULATE_OUTGOING_ARGS
  3056.   /* Now mark the segment we just used.  */
  3057.   if (argblock && ! variable_size && arg->stack)
  3058.     for (i = lower_bound; i < upper_bound; i++)
  3059.       stack_usage_map[i] = 1;
  3060. #endif
  3061. }
  3062.